Fixed a few modularization bugs.
This commit is contained in:
parent
b8643d14d3
commit
9eb2fff01a
2 changed files with 3 additions and 4 deletions
|
@ -555,7 +555,7 @@ void jlDrawLine(jint16 x1, jint16 y1, jint16 x2, jint16 y2) {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#ifndef JL_HAS_DRAWPIXELGIT
|
#ifndef JL_HAS_DRAWPIXELGET
|
||||||
byte jlDrawPixelGet(jint16 x, jint16 y) {
|
byte jlDrawPixelGet(jint16 x, jint16 y) {
|
||||||
(void)x;
|
(void)x;
|
||||||
(void)y;
|
(void)y;
|
||||||
|
@ -587,7 +587,7 @@ void jlDrawSurfaceSet(jlSurfaceT target) {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#ifndef JL_HAS_GETGAMEAXIS
|
#ifndef JL_HAS_GAMEGETAXIS
|
||||||
jint16 jlGameGetAxis(byte which) {
|
jint16 jlGameGetAxis(byte which) {
|
||||||
(void)which;
|
(void)which;
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -595,7 +595,7 @@ jint16 jlGameGetAxis(byte which) {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#ifndef JL_HAS_GETGAMEBUTTON
|
#ifndef JL_HAS_GAMEGETBUTTON
|
||||||
bool jlGameGetButton(byte which) {
|
bool jlGameGetButton(byte which) {
|
||||||
(void)which;
|
(void)which;
|
||||||
return false;
|
return false;
|
||||||
|
|
|
@ -208,7 +208,6 @@ typedef unsigned long juint32;
|
||||||
#pragma lint -1
|
#pragma lint -1
|
||||||
#pragma debug 0
|
#pragma debug 0
|
||||||
|
|
||||||
#define JL_HAS_DISPLAYBORDER
|
|
||||||
#define JL_HAS_DISPLAYPRESENT
|
#define JL_HAS_DISPLAYPRESENT
|
||||||
#define JL_HAS_DRAWBLIT8X8
|
#define JL_HAS_DRAWBLIT8X8
|
||||||
#define JL_HAS_DRAWBLIT8X8A
|
#define JL_HAS_DRAWBLIT8X8A
|
||||||
|
|
Loading…
Add table
Reference in a new issue