Fixed a name clash with the langauge
This commit is contained in:
2
Toy
2
Toy
Submodule Toy updated: 14710dec90...8498864dde
@@ -1,4 +1,4 @@
|
||||
#include "common.h"
|
||||
#include "core_common.h"
|
||||
|
||||
STATIC_ASSERT(sizeof(char) == 1);
|
||||
STATIC_ASSERT(sizeof(short) == 2);
|
||||
@@ -1,5 +1,8 @@
|
||||
#pragma once
|
||||
|
||||
#include <SDL2/SDL.h>
|
||||
#include <SDL2/SDL_image.h>
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
@@ -1,13 +1,13 @@
|
||||
#pragma once
|
||||
|
||||
#include "common.h"
|
||||
#include "core_common.h"
|
||||
#include "engine_node.h"
|
||||
#include "interpreter.h"
|
||||
|
||||
#include "literal_array.h"
|
||||
#include "literal_dictionary.h"
|
||||
|
||||
#include <SDL2/SDL.h>
|
||||
#include "core_common.h"
|
||||
|
||||
#include <sys/time.h>
|
||||
|
||||
|
||||
@@ -1,12 +1,11 @@
|
||||
#pragma once
|
||||
|
||||
#include "common.h"
|
||||
#include "core_common.h"
|
||||
|
||||
#include "literal_dictionary.h"
|
||||
#include "interpreter.h"
|
||||
|
||||
#include <SDL2/SDL.h>
|
||||
#include <SDL2/SDL_image.h>
|
||||
#include "core_common.h"
|
||||
|
||||
#define OPAQUE_TAG_ENGINE_NODE 1
|
||||
|
||||
|
||||
@@ -3,8 +3,7 @@
|
||||
#include "memory.h"
|
||||
|
||||
#include "engine.h"
|
||||
|
||||
#include <SDL2/SDL.h>
|
||||
#include "core_common.h"
|
||||
|
||||
static int nativeMapInputEventToKey(Interpreter* interpreter, LiteralArray* arguments, LiteralDictionary* symKeyEventsPtr, char* fnName) {
|
||||
//checks
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#pragma once
|
||||
|
||||
#include "common.h"
|
||||
#include "core_common.h"
|
||||
|
||||
char* readFile(char* path, size_t* fileSize);
|
||||
void writeFile(char* path, unsigned char* bytes, size_t size);
|
||||
|
||||
Reference in New Issue
Block a user