fix some errors in visual studio
This commit is contained in:
parent
ad0149a1bb
commit
dd82ed8cd9
@ -60,7 +60,7 @@ namespace ui
|
||||
inline int GetMaxWidth() { return maxWidth; }
|
||||
inline int GetMaxHeight() { return maxHeight; }
|
||||
|
||||
inline void SetMaxSize(int width, int height);
|
||||
TPT_NO_INLINE void SetMaxSize(int width, int height);
|
||||
|
||||
inline void SetSize(int width, int height);
|
||||
|
||||
|
@ -35,7 +35,7 @@ namespace vm
|
||||
delete[] hunk;
|
||||
}
|
||||
|
||||
#define DEBUGTRACE(args...) printf(args);
|
||||
#define DEBUGTRACE(args, ...) printf(args);
|
||||
|
||||
int VirtualMachine::opcodeParameterSize(int opcode)
|
||||
{
|
||||
@ -316,6 +316,7 @@ namespace vm
|
||||
ramMask = ramSize;
|
||||
|
||||
return 1;*/
|
||||
return 0; //temporary, something has to be returned for now
|
||||
}
|
||||
|
||||
void VirtualMachine::End()
|
||||
|
Loading…
Reference in New Issue
Block a user