diff options
Diffstat (limited to 'backends/platform/gp32')
-rw-r--r-- | backends/platform/gp32/Makefile | 6 | ||||
-rw-r--r-- | backends/platform/gp32/debug-gdbstub-usb.cpp | 8 | ||||
-rw-r--r-- | backends/platform/gp32/gp32std_memory.h | 2 |
3 files changed, 8 insertions, 8 deletions
diff --git a/backends/platform/gp32/Makefile b/backends/platform/gp32/Makefile index d3ae963ca2..327bee9d10 100644 --- a/backends/platform/gp32/Makefile +++ b/backends/platform/gp32/Makefile @@ -56,7 +56,7 @@ GPSDK = /usr/compat/gp32/share/sdk LDSPECS = -specs=gp32_gpsdk.specs -LDFLAGS = $(STRIP_DEBUG) -Wl,-Map,$(MAPFILE) $(LDSPECS) -Wl,--no-warn-mismatch +LDFLAGS = $(STRIP_DEBUG) -Wl,-Map,$(MAPFILE) $(LDSPECS) -Wl,--no-warn-mismatch LIBS += -L$(GPSDK)/lib \ -lgpmem -lgpos -lgpstdio -lgpstdlib -lgpsound -lgpgraphic -lgpfont \ @@ -75,7 +75,7 @@ FXE = scummvm.fxe # Plugins hack srcdir = ./ -DEFINES = -D__GP32__ +DEFINES = -D__GP32__ DEFINES += -DNONSTANDARD_PORT # Disable new themes. GP32 has LOW memory! @@ -132,7 +132,7 @@ OBJS += backends/platform/gp32/gp32std.o \ #backends/platform/gp32/dmaaudio.o \ #Main ScummVM for the GP32 Backend -OBJS += backends/platform/gp32/gp32_main.o \ +OBJS += backends/platform/gp32/gp32_main.o \ backends/platform/gp32/gp32_launcher.o \ backends/platform/gp32/gp32_osys.o \ backends/fs/gp32/gp32-fs.o diff --git a/backends/platform/gp32/debug-gdbstub-usb.cpp b/backends/platform/gp32/debug-gdbstub-usb.cpp index 9899ae47ec..76b7fad13b 100644 --- a/backends/platform/gp32/debug-gdbstub-usb.cpp +++ b/backends/platform/gp32/debug-gdbstub-usb.cpp @@ -141,7 +141,7 @@ static char * arm_register_name_strings[] = // Some USB stuff GPN_DESC g_CommDesc; GPN_COMM g_Comm; -const char HexDigits[17] = "0123456789abcdef"; +const char HexDigits[17] = "0123456789abcdef"; char g_SendBuffer[256]; char g_TempBuffer[256]; char g_ReadBuffer[0x100]; @@ -592,7 +592,7 @@ int GetBytes(char *pBuffer) void SendMemory(void *pAddr, int iBytes) { unsigned char *pData; - unsigned char iData; + unsigned char iData; int iBufferPos = 0; int iBytesToSend; char Byte; @@ -1016,7 +1016,7 @@ void BreakPoint() int iResult; int iMessageLength; int iOffsetAdd; - int iNullVal = 0; + int iNullVal = 0; void *pAddr; int iOffset; int iBytes; @@ -1871,7 +1871,7 @@ unsigned int DecodeLSRO(lsro Instr, unsigned int uiPC) unsigned int DecodeLSM(lsm Instr, unsigned int uiPC) { unsigned int uiRnValue = g_Registers[Instr.Rn]; - unsigned int uiOffsetToPC = 0; + unsigned int uiOffsetToPC = 0; unsigned int uiMemValue; // Make sure PC is destination and it's Load instruction diff --git a/backends/platform/gp32/gp32std_memory.h b/backends/platform/gp32/gp32std_memory.h index 6fe5804453..b824e33838 100644 --- a/backends/platform/gp32/gp32std_memory.h +++ b/backends/platform/gp32/gp32std_memory.h @@ -30,6 +30,6 @@ extern void * gp_memcpy(void *dst, const void *src, size_t count); extern void * gp_memset(void *dst, int val, size_t count); extern void * gp_malloc(size_t size); extern void * gp_calloc(size_t nitems, size_t size); -extern void gp_free(void *block); +extern void gp_free(void *block); #endif |