mirror of
https://github.com/aap/pdp6.git
synced 2026-01-11 23:53:31 +00:00
commit
5f4d51126e
@ -1,5 +1,5 @@
|
||||
#include "pdp6.h"
|
||||
#include <SDL2/SDL.h>
|
||||
#include <SDL.h>
|
||||
|
||||
//#define JUSTTESTING
|
||||
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
#include "pdp6.h"
|
||||
#include <unistd.h>
|
||||
#include <signal.h>
|
||||
#include <SDL2/SDL.h>
|
||||
#include <SDL.h>
|
||||
#include <unistd.h>
|
||||
|
||||
char *joy_ident = JOY_IDENT;
|
||||
|
||||
@ -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"
|
||||
|
||||
@ -213,7 +213,11 @@ void
|
||||
threadname(char *name)
|
||||
{
|
||||
// TODO: make portable
|
||||
#ifdef __APPLE__
|
||||
pthread_setname_np(name);
|
||||
#else
|
||||
pthread_setname_np(pthread_self(), name);
|
||||
#endif
|
||||
}
|
||||
|
||||
int
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user