Commit a4100cf

Nick committed on
Decrease optimization level, change postbuild script, temp revert ember's suggestion
commit a4100cfc788be2f143838923fd15912e81e826cc parent 81f06fe
5 changed files +11−8
ModifiedGBEmu.lpi +3−3
@@ -42,7 +42,7 @@
42 <RelocatableUnit Value="True"/> 42 <RelocatableUnit Value="True"/>
43 <TargetOS Value="win64"/> 43 <TargetOS Value="win64"/>
44 <Optimizations> 44 <Optimizations>
45 <OptimizationLevel Value="4"/> 45 <OptimizationLevel Value="3"/>
46 </Optimizations> 46 </Optimizations>
47 </CodeGeneration> 47 </CodeGeneration>
48 <Linking> 48 <Linking>
@@ -101,7 +101,7 @@
101 <RelocatableUnit Value="True"/> 101 <RelocatableUnit Value="True"/>
102 <TargetOS Value="linux"/> 102 <TargetOS Value="linux"/>
103 <Optimizations> 103 <Optimizations>
104 <OptimizationLevel Value="4"/> 104 <OptimizationLevel Value="3"/>
105 </Optimizations> 105 </Optimizations>
106 </CodeGeneration> 106 </CodeGeneration>
107 <Linking> 107 <Linking>
@@ -163,7 +163,7 @@
163 <RelocatableUnit Value="True"/> 163 <RelocatableUnit Value="True"/>
164 <TargetOS Value="darwin"/> 164 <TargetOS Value="darwin"/>
165 <Optimizations> 165 <Optimizations>
166 <OptimizationLevel Value="4"/> 166 <OptimizationLevel Value="3"/>
167 </Optimizations> 167 </Optimizations>
168 </CodeGeneration> 168 </CodeGeneration>
169 <Linking> 169 <Linking>
ModifiedPostBuild.pas +3−0
@@ -51,6 +51,9 @@ begin
51 DestDir := ParamStr(2); 51 DestDir := ParamStr(2);
52 Dev := ContainsText(DestDir, 'Development'); 52 Dev := ContainsText(DestDir, 'Development');
53 53
54 if not DirectoryExists(DestDir+'render') then
55 MkDir(DestDir+'render');
56
54 HTCopyFile('Resources/ROMs/halt.gb'); 57 HTCopyFile('Resources/ROMs/halt.gb');
55 HTCopyFile('Resources/Fonts/PixeliteTTF.ttf'); 58 HTCopyFile('Resources/Fonts/PixeliteTTF.ttf');
56 59
ModifiedhUGEDriver +1−1
@@ -1 +1 @@
1 Subproject commit 35e51823205c323e2f3de3703fa38aa035cab81e 1 Subproject commit 17238d410f1b1d5945ccf8ef326b2ff6d633dd35
Modifiedtracker.lfm +2−2
@@ -1,7 +1,7 @@
1 object frmTracker: TfrmTracker 1 object frmTracker: TfrmTracker
2 Left = 1653 2 Left = 1559
3 Height = 653 3 Height = 653
4 Top = 325 4 Top = 196
5 Width = 1232 5 Width = 1232
6 AllowDropFiles = True 6 AllowDropFiles = True
7 Caption = 'hUGETracker' 7 Caption = 'hUGETracker'
Modifiedtracker.pas +2−2
@@ -514,8 +514,8 @@ begin
514 for I := Low(Song.Instruments.Noise) to High(song.Instruments.Noise) do 514 for I := Low(Song.Instruments.Noise) to High(song.Instruments.Noise) do
515 InstrumentComboBox.Items.Add('Noise '+IntToStr(I)+': '+Song.Instruments.Noise[ModInst(I)].Name); 515 InstrumentComboBox.Items.Add('Noise '+IntToStr(I)+': '+Song.Instruments.Noise[ModInst(I)].Name);
516 516
517 InstrumentComboBox.ItemIndex := 1; 517 InstrumentComboBox.ItemIndex := 0;
518 TrackerGrid.SelectedInstrument := ModInst(InstrumentComboBox.ItemIndex); 518 //TrackerGrid.SelectedInstrument := 1; //ModInst(InstrumentComboBox.ItemIndex);
519 519
520 for I := Low(TInstrumentBank) to High(TInstrumentBank) do begin 520 for I := Low(TInstrumentBank) to High(TInstrumentBank) do begin
521 DutyInstrumentsNode.Items[I-1].Text := IntToStr(I)+': '+Song.Instruments.Duty[I].Name; 521 DutyInstrumentsNode.Items[I-1].Text := IntToStr(I)+': '+Song.Instruments.Duty[I].Name;