mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 01:58:19 +00:00
fixed compile errors
This commit is contained in:
parent
5400809a9d
commit
f685b413d2
|
@ -195,7 +195,7 @@ def emit_header_file(f, p):
|
|||
def emit_source_file(f, p, protofilename):
|
||||
|
||||
|
||||
print >>f, "#line 1 \"%s\"" % os.path.abspath(protofilename)
|
||||
print >>f, "#line 1 \"%s\"" % os.path.abspath(protofilename).replace("\\", "\\\\")
|
||||
|
||||
for l in p.source_raw:
|
||||
print >>f, l
|
||||
|
|
|
@ -1,7 +1,9 @@
|
|||
|
||||
raw_source
|
||||
#include "g_protocol.h"
|
||||
#include "g_protocol_ids.h"
|
||||
extern "C" {
|
||||
#include "g_protocol_ids.h"
|
||||
}
|
||||
#include <engine/e_common_interface.h>
|
||||
#define max_int 2147483647
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue