Skip to content
This repository has been archived by the owner on Dec 1, 2023. It is now read-only.

Commit

Permalink
Fix 5E01 registers
Browse files Browse the repository at this point in the history
  • Loading branch information
eulyderg committed Apr 10, 2021
1 parent 71fa544 commit 1e5d1fb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion E-FamiTracker.rc
Original file line number Diff line number Diff line change
Expand Up @@ -2454,7 +2454,7 @@ END
STRINGTABLE
BEGIN
AFX_IDS_APP_TITLE "0CC-FamiTracker"
AFX_IDS_IDLEMESSAGE "E-FamiTracker 0.0.1.4.09a"
AFX_IDS_IDLEMESSAGE "E-FamiTracker 0.0.1.4.0Aa"
AFX_IDS_HELPMODEMESSAGE "Select an object on which to get Help"
END

Expand Down
2 changes: 1 addition & 1 deletion Source/PatternEditor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2191,7 +2191,7 @@ void CPatternEditor::DrawRegisters(CDC *pDC)
DrawRegFunc(text, 4);

int period, vol;
double freq = theApp.GetSoundGenerator()->GetChannelFrequency(SNDCHIP_NONE, i); // // //
double freq = theApp.GetSoundGenerator()->GetChannelFrequency(SNDCHIP_5E01, i); // // //

LPCTSTR waveNames[4] = { _T("tri"),_T("saw"),_T("squ"),_T("sin") };

Expand Down
2 changes: 1 addition & 1 deletion version.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@
STR(VERSION_REV)


#define APP_NAME_VERSION APP_NAME " " VERSION_STR ".09a"
#define APP_NAME_VERSION APP_NAME " " VERSION_STR ".0Aa"

0 comments on commit 1e5d1fb

Please sign in to comment.