chore(developer): fix kmcompx compile errors

Some minor errors post-merge.
This commit is contained in:
Marc Durdin 2023-03-10 13:16:25 +07:00
parent 2ad0689090
commit 73a080a949
2 changed files with 2 additions and 5 deletions

View file

@ -3432,7 +3432,7 @@ KMX_DWORD ReadLine(FILE* fp_in , PKMX_WCHAR wstr, KMX_BOOL PreProcess)
*p = L' ';
continue;
}
if((*p == L'\\')) {
if(*p == L'\\') {
LineCarry = TRUE;
*p = L' ';
continue;

View file

@ -1,6 +1,4 @@
#ifndef KMX_U16H_H
#define KMX_U16H_H
#pragma once
#include <cmath>
#include <vector>
@ -37,4 +35,3 @@ KMX_CHAR* strrchr_slash(KMX_CHAR* Name);
const KMX_WCHAR* u16rchr_slash(KMX_WCHAR const* Name);
std::string toHex(int num1);