1
0
mirror of https://github.com/aap/pdp6.git synced 2026-01-13 07:20:13 +00:00

Include <SDL.h>, etc instead of <SDL2/...>; as per SDL2 recommendation..

This commit is contained in:
Alfred M. Szmidt 2024-02-19 17:45:10 +01:00
parent 22868594bd
commit ebe85645a1
3 changed files with 5 additions and 4 deletions

View File

@ -1,5 +1,5 @@
#include "pdp6.h"
#include <SDL2/SDL.h>
#include <SDL.h>
//#define JUSTTESTING

View File

@ -1,6 +1,7 @@
#include "pdp6.h"
#include <unistd.h>
#include <signal.h>
#include <SDL2/SDL.h>
#include <SDL.h>
char *joy_ident = JOY_IDENT;
char *ojoy_ident = OJOY_IDENT;

View File

@ -1,7 +1,7 @@
#include "pdp6.h"
#include <stdarg.h>
#include <SDL2/SDL.h>
#include <SDL2/SDL_image.h>
#include <SDL.h>
#include <SDL_image.h>
#include "args.h"
#include "../art/panelart.inc"