Skip to content

Commit

Permalink
v1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ncannasse committed Feb 4, 2017
1 parent 0034905 commit f9ac7ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/hl.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
#ifndef HL_H
#define HL_H

#define HL_VERSION 0x100
#define HL_VERSION 0x110

#ifdef _WIN32
# define HL_WIN
Expand Down
2 changes: 1 addition & 1 deletion src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ int main(int argc, pchar *argv[]) {
file = PSTR("hlboot.dat");
fchk = pfopen(file,"rb");
if( fchk == NULL ) {
printf("HL/JIT %d.%d.%d (c)2015-2016 Haxe Foundation\n Usage : hl [--debug <port>] <file>\n",HL_VERSION>>8,(HL_VERSION>>4)&15,HL_VERSION&15);
printf("HL/JIT %d.%d.%d (c)2015-2017 Haxe Foundation\n Usage : hl [--debug <port>] <file>\n",HL_VERSION>>8,(HL_VERSION>>4)&15,HL_VERSION&15);
return 1;
}
fclose(fchk);
Expand Down

0 comments on commit f9ac7ac

Please sign in to comment.