diff options
author | qwx <devnull@localhost> | 2018-05-13 07:01:47 +0200 |
---|---|---|
committer | qwx <devnull@localhost> | 2018-05-13 07:01:47 +0200 |
commit | 88537cfe9b483846ccd7367c81fde5dcfe16a4d5 (patch) | |
tree | 29277160129a844585f281045b368cd64776d8a2 /sys/src/games/nes/ppu.c | |
parent | abf8c8bf2cd27541d6a102f7c0385c3fe281f578 (diff) |
demote libemu to common code
- too small, nothing else that won't be under /games will use it
- "libemu" as a name doesn't make sense here
Diffstat (limited to 'sys/src/games/nes/ppu.c')
-rw-r--r-- | sys/src/games/nes/ppu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/games/nes/ppu.c b/sys/src/games/nes/ppu.c index 498c20082..0f7010198 100644 --- a/sys/src/games/nes/ppu.c +++ b/sys/src/games/nes/ppu.c @@ -3,7 +3,7 @@ #include <thread.h> #include <draw.h> #include <mouse.h> -#include <emu.h> +#include "../eui.h" #include "dat.h" #include "fns.h" |