sebastianbiallas / pearpc

PearPC - PowerPC Architecture Emulator

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Small fix to get pearpc to compile with SDL 1.2.15 and C++11

cat7 opened this issue · comments

commented

C++11 stumbles on a missing space in src/system/ui/SDL/sysdisplay.cc

define DPRINTF(a...) ht_printf("[Display/SDL]: "a)

adding a space before "a fixes this:

define DPRINTF(a...) ht_printf("[Display/SDL]: " a)

Fixed, thanks