fix compile errors with MSVC 2008
This commit is contained in:
parent
c9865dacb7
commit
39056bc7c3
|
@ -480,6 +480,10 @@
|
||||||
RelativePath="..\..\src\gba\GBAcpu.h"
|
RelativePath="..\..\src\gba\GBAcpu.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\..\src\gba\gbafilter.cpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\src\gba\gbagfx.cpp"
|
RelativePath="..\..\src\gba\gbagfx.cpp"
|
||||||
>
|
>
|
||||||
|
|
|
@ -926,6 +926,13 @@ u32 systemReadJoypad(int which)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO: implement
|
||||||
|
void systemCartridgeRumble(bool) { }
|
||||||
|
void systemPossibleCartridgeRumble(bool) { }
|
||||||
|
void updateRumbleFrame() { }
|
||||||
|
int systemGetSensorZ() { return 0; }
|
||||||
|
u8 systemGetSensorDarkness() { return 0; }
|
||||||
|
|
||||||
void systemDrawScreen()
|
void systemDrawScreen()
|
||||||
{
|
{
|
||||||
if(theApp.display == NULL)
|
if(theApp.display == NULL)
|
||||||
|
|
Loading…
Reference in New Issue