Skip to content

Commit f3dd121

Browse files
committed
mini fix
1 parent 0c2f723 commit f3dd121

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Main.hx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import src.utils.UDPListener;
77

88
class Main {
99
public static var hxcompileuString = "\x1b[38;5;214mHx\033[0mCompile\x1b[38;5;74mU\033[0m";
10-
public static var version:String = "1.3.5";
10+
public static var version:String = "1.3.6";
1111
static var stdin = Sys.stdin();
1212
static var stdout = Sys.stdout();
1313
static var args = Sys.args();

src/compilers/CafeCompiler.hx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class CafeCompiler {
4747
var makefileContent:String = Resource.getString("cafeMakefileWUT");
4848
makefileContent = makefileContent.replace("[PROGRAM_VERSION]", Main.version);
4949
makefileContent = makefileContent.replace("[PROJECT_NAME]", jsonFile.wiiuConfig.projectName);
50-
makefileContent = makefileContent.replace("[SOURCE_DIR]", jsonFile.haxeConfig.outDir + "/" + jsonFile.haxeConfig.sourceDir);
50+
makefileContent = makefileContent.replace("[SOURCE_DIR]", jsonFile.haxeConfig.outDir + "/src");
5151
makefileContent = makefileContent.replace("[INCLUDE_DIR]", jsonFile.haxeConfig.outDir + "/include");
5252
makefileContent = makefileContent.replace("[LIBS]", parseMakeLibs());
5353
makefileContent = makefileContent.replace("[DEFINES]", parseMakeDefines());

0 commit comments

Comments
 (0)