├── .gitattributes ├── .gitignore ├── .idea ├── .name ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── j0CC-FamiTracker.iml ├── misc.xml ├── modules.xml └── vcs.xml ├── 0CC-FamiTracker.reg ├── 0CC-FamiTracker.sln ├── 0CC-FamiTracker.vcxproj ├── 0CC-FamiTracker.vcxproj.filters ├── 0CC-readme.txt ├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── Source ├── APU │ ├── 2413tone.h │ ├── 2A03.cpp │ ├── 2A03.h │ ├── 2A03Chan.h │ ├── APU.CPP │ ├── APU.h │ ├── Channel.h │ ├── DPCM.CPP │ ├── DPCM.h │ ├── FDS.CPP │ ├── FDS.H │ ├── FDSSound.cpp │ ├── FDSSound.h │ ├── MMC5.CPP │ ├── MMC5.H │ ├── Mixer.cpp │ ├── Mixer.h │ ├── N163.CPP │ ├── N163.H │ ├── Noise.cpp │ ├── Noise.h │ ├── S5B.cpp │ ├── S5B.h │ ├── SoundChip.cpp │ ├── SoundChip.h │ ├── Square.cpp │ ├── Square.h │ ├── Triangle.cpp │ ├── Triangle.h │ ├── Types.h │ ├── VRC6.CPP │ ├── VRC6.H │ ├── VRC7.cpp │ ├── VRC7.h │ ├── emu2413.c │ ├── emu2413.h │ └── vrc7tone.h ├── AboutDlg.cpp ├── AboutDlg.h ├── Accelerator.cpp ├── Accelerator.h ├── Action.cpp ├── Action.h ├── Blip_Buffer │ ├── Blip_Buffer.cpp │ └── Blip_Buffer.h ├── Bookmark.cpp ├── Bookmark.h ├── BookmarkCollection.cpp ├── BookmarkCollection.h ├── BookmarkDlg.cpp ├── BookmarkDlg.h ├── BookmarkManager.cpp ├── BookmarkManager.h ├── ChannelFactory.cpp ├── ChannelFactory.h ├── ChannelHandler.cpp ├── ChannelHandler.h ├── ChannelHandlerInterface.h ├── ChannelMap.cpp ├── ChannelMap.h ├── ChannelState.cpp ├── ChannelState.h ├── Channels2A03.cpp ├── Channels2A03.h ├── ChannelsDlg.cpp ├── ChannelsDlg.h ├── ChannelsFDS.cpp ├── ChannelsFDS.h ├── ChannelsMMC5.cpp ├── ChannelsMMC5.h ├── ChannelsN163.cpp ├── ChannelsN163.h ├── ChannelsS5B.cpp ├── ChannelsS5B.h ├── ChannelsVRC6.cpp ├── ChannelsVRC6.h ├── ChannelsVRC7.cpp ├── ChannelsVRC7.h ├── Chunk.cpp ├── Chunk.h ├── ChunkRenderBinary.cpp ├── ChunkRenderBinary.h ├── ChunkRenderText.cpp ├── ChunkRenderText.h ├── Clipboard.cpp ├── Clipboard.h ├── ColorScheme.h ├── CommandLineExport.cpp ├── CommandLineExport.h ├── CommentsDlg.cpp ├── CommentsDlg.h ├── Common.h ├── Compiler.cpp ├── Compiler.h ├── CompoundAction.cpp ├── CompoundAction.h ├── ConfigAppearance.cpp ├── ConfigAppearance.h ├── ConfigGeneral.cpp ├── ConfigGeneral.h ├── ConfigMIDI.cpp ├── ConfigMIDI.h ├── ConfigMixer.cpp ├── ConfigMixer.h ├── ConfigShortcuts.cpp ├── ConfigShortcuts.h ├── ConfigSound.cpp ├── ConfigSound.h ├── ConfigVersion.cpp ├── ConfigVersion.h ├── ConfigWindow.cpp ├── ConfigWindow.h ├── ControlPanelDlg.cpp ├── ControlPanelDlg.h ├── CreateWaveDlg.cpp ├── CreateWaveDlg.h ├── CustomControls.cpp ├── CustomControls.h ├── CustomExporter.cpp ├── CustomExporter.h ├── CustomExporterInterfaces.h ├── CustomExporter_C_Interface.cpp ├── CustomExporter_C_Interface.h ├── CustomExporters.cpp ├── CustomExporters.h ├── DPI.cpp ├── DPI.h ├── DSample.cpp ├── DSample.h ├── DSampleManager.cpp ├── DSampleManager.h ├── DetuneDlg.cpp ├── DetuneDlg.h ├── DetuneTable.cpp ├── DetuneTable.h ├── DialogReBar.cpp ├── DialogReBar.h ├── DirectSound.cpp ├── DirectSound.h ├── DocumentFile.cpp ├── DocumentFile.h ├── DocumentWrapper.cpp ├── DocumentWrapper.h ├── Driver.h ├── Exception.cpp ├── Exception.h ├── ExportDialog.cpp ├── ExportDialog.h ├── FFT │ ├── FftBuffer.h │ └── FftComplex.hpp ├── FTMComponentInterface.h ├── Factory.h ├── FamiTracker.cpp ├── FamiTracker.h ├── FamiTrackerDoc.cpp ├── FamiTrackerDoc.h ├── FamiTrackerTypes.cpp ├── FamiTrackerTypes.h ├── FamiTrackerView.cpp ├── FamiTrackerView.h ├── FamiTrackerViewMessage.h ├── FindDlg.cpp ├── FindDlg.h ├── FrameAction.cpp ├── FrameAction.h ├── FrameEditor.cpp ├── FrameEditor.h ├── FrameEditorTypes.cpp ├── FrameEditorTypes.h ├── GotoDlg.cpp ├── GotoDlg.h ├── GraphEditor.cpp ├── GraphEditor.h ├── Graphics.cpp ├── Graphics.h ├── Groove.cpp ├── Groove.h ├── GrooveDlg.cpp ├── GrooveDlg.h ├── HistoryFileDlg.cpp ├── HistoryFileDlg.h ├── InstHandler.h ├── InstHandlerDPCM.cpp ├── InstHandlerDPCM.h ├── InstHandlerVRC7.cpp ├── InstHandlerVRC7.h ├── Instrument.cpp ├── Instrument.h ├── Instrument2A03.cpp ├── Instrument2A03.h ├── InstrumentEditDlg.cpp ├── InstrumentEditDlg.h ├── InstrumentEditPanel.cpp ├── InstrumentEditPanel.h ├── InstrumentEditorDPCM.cpp ├── InstrumentEditorDPCM.h ├── InstrumentEditorFDS.cpp ├── InstrumentEditorFDS.h ├── InstrumentEditorFDSEnvelope.cpp ├── InstrumentEditorFDSEnvelope.h ├── InstrumentEditorN163Wave.cpp ├── InstrumentEditorN163Wave.h ├── InstrumentEditorSeq.cpp ├── InstrumentEditorSeq.h ├── InstrumentEditorVRC7.cpp ├── InstrumentEditorVRC7.h ├── InstrumentFDS.cpp ├── InstrumentFDS.h ├── InstrumentFactory.cpp ├── InstrumentFactory.h ├── InstrumentFileTree.cpp ├── InstrumentFileTree.h ├── InstrumentListCtrl.cpp ├── InstrumentManager.cpp ├── InstrumentManager.h ├── InstrumentManagerInterface.h ├── InstrumentN163.cpp ├── InstrumentN163.h ├── InstrumentRecorder.cpp ├── InstrumentRecorder.h ├── InstrumentS5B.cpp ├── InstrumentS5B.h ├── InstrumentVRC6.cpp ├── InstrumentVRC6.h ├── InstrumentVRC7.cpp ├── InstrumentVRC7.h ├── IntRange.h ├── MIDI.cpp ├── MIDI.h ├── MainFrm.cpp ├── MainFrm.h ├── ModSequenceEditor.cpp ├── ModSequenceEditor.h ├── ModuleException.cpp ├── ModuleException.h ├── ModuleImportDlg.cpp ├── ModuleImportDlg.h ├── ModulePropertiesDlg.cpp ├── ModulePropertiesDlg.h ├── NoNotifyEdit.cpp ├── NoNotifyEdit.h ├── NoteQueue.cpp ├── NoteQueue.h ├── NumConv.h ├── OldSequence.cpp ├── OldSequence.h ├── PCMImport.cpp ├── PCMImport.h ├── PatternAction.cpp ├── PatternAction.h ├── PatternCompiler.cpp ├── PatternCompiler.h ├── PatternComponent.cpp ├── PatternComponent.h ├── PatternData.cpp ├── PatternData.h ├── PatternEditor.cpp ├── PatternEditor.h ├── PatternEditorTypes.cpp ├── PatternEditorTypes.h ├── PatternNote.cpp ├── PatternNote.h ├── PerformanceDlg.cpp ├── PerformanceDlg.h ├── RecordSettingsDlg.cpp ├── RecordSettingsDlg.h ├── RegisterState.cpp ├── RegisterState.h ├── SampleEditorDlg.cpp ├── SampleEditorDlg.h ├── SampleEditorView.cpp ├── SampleEditorView.h ├── SeqInstHandler.cpp ├── SeqInstHandler.h ├── SeqInstHandler2A03Pulse.cpp ├── SeqInstHandler2A03Pulse.h ├── SeqInstHandlerFDS.cpp ├── SeqInstHandlerFDS.h ├── SeqInstHandlerN163.cpp ├── SeqInstHandlerN163.h ├── SeqInstHandlerS5B.cpp ├── SeqInstHandlerS5B.h ├── SeqInstHandlerSawtooth.cpp ├── SeqInstHandlerSawtooth.h ├── SeqInstrument.cpp ├── SeqInstrument.h ├── Sequence.cpp ├── Sequence.h ├── SequenceCollection.cpp ├── SequenceCollection.h ├── SequenceEditor.cpp ├── SequenceEditor.h ├── SequenceEditorMessage.h ├── SequenceManager.cpp ├── SequenceManager.h ├── SequenceParser.cpp ├── SequenceParser.h ├── SequenceSetting.cpp ├── SequenceSetting.h ├── Settings.cpp ├── Settings.h ├── SimpleFile.cpp ├── SimpleFile.h ├── SizeEditor.cpp ├── SizeEditor.h ├── SoundGen.cpp ├── SoundGen.h ├── SpeedDlg.cpp ├── SpeedDlg.h ├── SplitKeyboardDlg.cpp ├── SplitKeyboardDlg.h ├── StretchDlg.cpp ├── StretchDlg.h ├── SwapDlg.cpp ├── SwapDlg.h ├── TextExporter.cpp ├── TextExporter.h ├── TrackerChannel.cpp ├── TrackerChannel.h ├── TransposeDlg.cpp ├── TransposeDlg.h ├── VisualizerBase.cpp ├── VisualizerBase.h ├── VisualizerScope.cpp ├── VisualizerScope.h ├── VisualizerSpectrum.cpp ├── VisualizerSpectrum.h ├── VisualizerStatic.cpp ├── VisualizerStatic.h ├── VisualizerWnd.cpp ├── VisualizerWnd.h ├── WavProgressDlg.cpp ├── WavProgressDlg.h ├── WaveEditor.cpp ├── WaveEditor.h ├── WaveFile.cpp ├── WaveFile.h ├── WaveformGenerator.cpp ├── WaveformGenerator.h ├── WavegenBuiltin.cpp ├── WavegenBuiltin.h ├── WinSDK │ ├── VersionHelpers.h │ └── winapifamily.h ├── array_view.h ├── drivers │ ├── asm │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── apu.s │ │ ├── build │ │ │ └── build_engine.lua │ │ ├── driver.s │ │ ├── effects.s │ │ ├── fds.s │ │ ├── init.s │ │ ├── instrument.s │ │ ├── longbranch.mac │ │ ├── mmc5.s │ │ ├── n163.s │ │ ├── nsf.cfg │ │ ├── nsf_wrap.s │ │ ├── periods.s │ │ ├── player.s │ │ ├── s5b.s │ │ ├── sfx.s │ │ ├── vibrato.s │ │ ├── vrc6.s │ │ └── vrc7.s │ ├── build.cmd │ ├── drv_2a03.h │ ├── drv_all.h │ ├── drv_fds.h │ ├── drv_mmc5.h │ ├── drv_n163.h │ ├── drv_s5b.h │ ├── drv_vrc6.h │ └── drv_vrc7.h ├── json │ └── json.hpp ├── resampler │ ├── resample.cpp │ ├── resample.hpp │ ├── resample.inl │ ├── sinc.cpp │ └── sinc.hpp ├── stdafx.cpp ├── stdafx.h ├── str_conv │ ├── str_conv.hpp │ └── utf8_conv.hpp ├── to_sv.h ├── type_safe │ ├── arithmetic_policy.hpp │ ├── boolean.hpp │ ├── bounded_type.hpp │ ├── compact_optional.hpp │ ├── config.hpp │ ├── constrained_type.hpp │ ├── deferred_construction.hpp │ ├── detail │ │ ├── aligned_union.hpp │ │ ├── all_of.hpp │ │ ├── assert.hpp │ │ ├── assign_or_construct.hpp │ │ ├── constant_parser.hpp │ │ ├── copy_move_control.hpp │ │ ├── force_inline.hpp │ │ ├── is_nothrow_swappable.hpp │ │ ├── map_invoke.hpp │ │ └── variant_impl.hpp │ ├── downcast.hpp │ ├── flag.hpp │ ├── flag_set.hpp │ ├── floating_point.hpp │ ├── index.hpp │ ├── integer.hpp │ ├── narrow_cast.hpp │ ├── optional.hpp │ ├── optional_ref.hpp │ ├── output_parameter.hpp │ ├── reference.hpp │ ├── strong_typedef.hpp │ ├── tagged_union.hpp │ ├── types.hpp │ ├── variant.hpp │ └── visitor.hpp └── utils │ ├── ftmath.cpp │ ├── ftmath.h │ └── input.h ├── changelog.txt ├── cmake ├── exe.cmake └── mfc.cmake.in ├── name.h ├── res ├── 0CC-FamiTracker.manifest ├── 0CC-FamiTracker.rc ├── About.bmp ├── Application.ico ├── Document.ico ├── Inst_2A03.ico ├── Inst_2A07.ico ├── Inst_FDS.ico ├── Inst_N163.ico ├── Inst_S5B.ico ├── Inst_VRC6.ico ├── Inst_VRC7.ico ├── InstrumentToolbar-16.bmp ├── InstrumentToolbar-256.bmp ├── LeftArrow.ico ├── MainToolbar-16.bmp ├── MainToolbar-256.bmp ├── RightArrow.ico ├── key_black_pressed.bmp ├── key_black_unpressed.bmp ├── key_white_pressed.bmp ├── key_white_unpressed.bmp └── resource.h ├── specs.txt └── version.h /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | *.ico binary 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | j0CC_FamiTracker -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/j0CC-FamiTracker.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/.idea/j0CC-FamiTracker.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /0CC-FamiTracker.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/0CC-FamiTracker.reg -------------------------------------------------------------------------------- /0CC-FamiTracker.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/0CC-FamiTracker.sln -------------------------------------------------------------------------------- /0CC-FamiTracker.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/0CC-FamiTracker.vcxproj -------------------------------------------------------------------------------- /0CC-FamiTracker.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/0CC-FamiTracker.vcxproj.filters -------------------------------------------------------------------------------- /0CC-readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/0CC-readme.txt -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/README.md -------------------------------------------------------------------------------- /Source/APU/2413tone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/APU/2413tone.h -------------------------------------------------------------------------------- /Source/APU/2A03.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/APU/2A03.cpp -------------------------------------------------------------------------------- /Source/APU/2A03.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/APU/2A03.h -------------------------------------------------------------------------------- /Source/APU/2A03Chan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/APU/2A03Chan.h -------------------------------------------------------------------------------- /Source/APU/APU.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/APU/APU.CPP -------------------------------------------------------------------------------- /Source/APU/APU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/APU/APU.h -------------------------------------------------------------------------------- /Source/APU/Channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/APU/Channel.h -------------------------------------------------------------------------------- /Source/APU/DPCM.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/APU/DPCM.CPP -------------------------------------------------------------------------------- /Source/APU/DPCM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/APU/DPCM.h -------------------------------------------------------------------------------- /Source/APU/FDS.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/APU/FDS.CPP -------------------------------------------------------------------------------- /Source/APU/FDS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/APU/FDS.H -------------------------------------------------------------------------------- /Source/APU/FDSSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/APU/FDSSound.cpp -------------------------------------------------------------------------------- /Source/APU/FDSSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/APU/FDSSound.h -------------------------------------------------------------------------------- /Source/APU/MMC5.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/APU/MMC5.CPP -------------------------------------------------------------------------------- /Source/APU/MMC5.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/APU/MMC5.H -------------------------------------------------------------------------------- /Source/APU/Mixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/APU/Mixer.cpp -------------------------------------------------------------------------------- /Source/APU/Mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/APU/Mixer.h -------------------------------------------------------------------------------- /Source/APU/N163.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/APU/N163.CPP -------------------------------------------------------------------------------- /Source/APU/N163.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/APU/N163.H -------------------------------------------------------------------------------- /Source/APU/Noise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/APU/Noise.cpp -------------------------------------------------------------------------------- /Source/APU/Noise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/APU/Noise.h -------------------------------------------------------------------------------- /Source/APU/S5B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/APU/S5B.cpp -------------------------------------------------------------------------------- /Source/APU/S5B.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/APU/S5B.h -------------------------------------------------------------------------------- /Source/APU/SoundChip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/APU/SoundChip.cpp -------------------------------------------------------------------------------- /Source/APU/SoundChip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/APU/SoundChip.h -------------------------------------------------------------------------------- /Source/APU/Square.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/APU/Square.cpp -------------------------------------------------------------------------------- /Source/APU/Square.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/APU/Square.h -------------------------------------------------------------------------------- /Source/APU/Triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/APU/Triangle.cpp -------------------------------------------------------------------------------- /Source/APU/Triangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/APU/Triangle.h -------------------------------------------------------------------------------- /Source/APU/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/APU/Types.h -------------------------------------------------------------------------------- /Source/APU/VRC6.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/APU/VRC6.CPP -------------------------------------------------------------------------------- /Source/APU/VRC6.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/APU/VRC6.H -------------------------------------------------------------------------------- /Source/APU/VRC7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/APU/VRC7.cpp -------------------------------------------------------------------------------- /Source/APU/VRC7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/APU/VRC7.h -------------------------------------------------------------------------------- /Source/APU/emu2413.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/APU/emu2413.c -------------------------------------------------------------------------------- /Source/APU/emu2413.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/APU/emu2413.h -------------------------------------------------------------------------------- /Source/APU/vrc7tone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/APU/vrc7tone.h -------------------------------------------------------------------------------- /Source/AboutDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/AboutDlg.cpp -------------------------------------------------------------------------------- /Source/AboutDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/AboutDlg.h -------------------------------------------------------------------------------- /Source/Accelerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/Accelerator.cpp -------------------------------------------------------------------------------- /Source/Accelerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/Accelerator.h -------------------------------------------------------------------------------- /Source/Action.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/Action.cpp -------------------------------------------------------------------------------- /Source/Action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/Action.h -------------------------------------------------------------------------------- /Source/Blip_Buffer/Blip_Buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/Blip_Buffer/Blip_Buffer.cpp -------------------------------------------------------------------------------- /Source/Blip_Buffer/Blip_Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/Blip_Buffer/Blip_Buffer.h -------------------------------------------------------------------------------- /Source/Bookmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/Bookmark.cpp -------------------------------------------------------------------------------- /Source/Bookmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/Bookmark.h -------------------------------------------------------------------------------- /Source/BookmarkCollection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/BookmarkCollection.cpp -------------------------------------------------------------------------------- /Source/BookmarkCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/BookmarkCollection.h -------------------------------------------------------------------------------- /Source/BookmarkDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/BookmarkDlg.cpp -------------------------------------------------------------------------------- /Source/BookmarkDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/BookmarkDlg.h -------------------------------------------------------------------------------- /Source/BookmarkManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/BookmarkManager.cpp -------------------------------------------------------------------------------- /Source/BookmarkManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/BookmarkManager.h -------------------------------------------------------------------------------- /Source/ChannelFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ChannelFactory.cpp -------------------------------------------------------------------------------- /Source/ChannelFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ChannelFactory.h -------------------------------------------------------------------------------- /Source/ChannelHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ChannelHandler.cpp -------------------------------------------------------------------------------- /Source/ChannelHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ChannelHandler.h -------------------------------------------------------------------------------- /Source/ChannelHandlerInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ChannelHandlerInterface.h -------------------------------------------------------------------------------- /Source/ChannelMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ChannelMap.cpp -------------------------------------------------------------------------------- /Source/ChannelMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ChannelMap.h -------------------------------------------------------------------------------- /Source/ChannelState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ChannelState.cpp -------------------------------------------------------------------------------- /Source/ChannelState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ChannelState.h -------------------------------------------------------------------------------- /Source/Channels2A03.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/Channels2A03.cpp -------------------------------------------------------------------------------- /Source/Channels2A03.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/Channels2A03.h -------------------------------------------------------------------------------- /Source/ChannelsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ChannelsDlg.cpp -------------------------------------------------------------------------------- /Source/ChannelsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ChannelsDlg.h -------------------------------------------------------------------------------- /Source/ChannelsFDS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ChannelsFDS.cpp -------------------------------------------------------------------------------- /Source/ChannelsFDS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ChannelsFDS.h -------------------------------------------------------------------------------- /Source/ChannelsMMC5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ChannelsMMC5.cpp -------------------------------------------------------------------------------- /Source/ChannelsMMC5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ChannelsMMC5.h -------------------------------------------------------------------------------- /Source/ChannelsN163.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ChannelsN163.cpp -------------------------------------------------------------------------------- /Source/ChannelsN163.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ChannelsN163.h -------------------------------------------------------------------------------- /Source/ChannelsS5B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ChannelsS5B.cpp -------------------------------------------------------------------------------- /Source/ChannelsS5B.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ChannelsS5B.h -------------------------------------------------------------------------------- /Source/ChannelsVRC6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ChannelsVRC6.cpp -------------------------------------------------------------------------------- /Source/ChannelsVRC6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ChannelsVRC6.h -------------------------------------------------------------------------------- /Source/ChannelsVRC7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ChannelsVRC7.cpp -------------------------------------------------------------------------------- /Source/ChannelsVRC7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ChannelsVRC7.h -------------------------------------------------------------------------------- /Source/Chunk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/Chunk.cpp -------------------------------------------------------------------------------- /Source/Chunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/Chunk.h -------------------------------------------------------------------------------- /Source/ChunkRenderBinary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ChunkRenderBinary.cpp -------------------------------------------------------------------------------- /Source/ChunkRenderBinary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ChunkRenderBinary.h -------------------------------------------------------------------------------- /Source/ChunkRenderText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ChunkRenderText.cpp -------------------------------------------------------------------------------- /Source/ChunkRenderText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ChunkRenderText.h -------------------------------------------------------------------------------- /Source/Clipboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/Clipboard.cpp -------------------------------------------------------------------------------- /Source/Clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/Clipboard.h -------------------------------------------------------------------------------- /Source/ColorScheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ColorScheme.h -------------------------------------------------------------------------------- /Source/CommandLineExport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/CommandLineExport.cpp -------------------------------------------------------------------------------- /Source/CommandLineExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/CommandLineExport.h -------------------------------------------------------------------------------- /Source/CommentsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/CommentsDlg.cpp -------------------------------------------------------------------------------- /Source/CommentsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/CommentsDlg.h -------------------------------------------------------------------------------- /Source/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/Common.h -------------------------------------------------------------------------------- /Source/Compiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/Compiler.cpp -------------------------------------------------------------------------------- /Source/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/Compiler.h -------------------------------------------------------------------------------- /Source/CompoundAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/CompoundAction.cpp -------------------------------------------------------------------------------- /Source/CompoundAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/CompoundAction.h -------------------------------------------------------------------------------- /Source/ConfigAppearance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ConfigAppearance.cpp -------------------------------------------------------------------------------- /Source/ConfigAppearance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ConfigAppearance.h -------------------------------------------------------------------------------- /Source/ConfigGeneral.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ConfigGeneral.cpp -------------------------------------------------------------------------------- /Source/ConfigGeneral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ConfigGeneral.h -------------------------------------------------------------------------------- /Source/ConfigMIDI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ConfigMIDI.cpp -------------------------------------------------------------------------------- /Source/ConfigMIDI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ConfigMIDI.h -------------------------------------------------------------------------------- /Source/ConfigMixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ConfigMixer.cpp -------------------------------------------------------------------------------- /Source/ConfigMixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ConfigMixer.h -------------------------------------------------------------------------------- /Source/ConfigShortcuts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ConfigShortcuts.cpp -------------------------------------------------------------------------------- /Source/ConfigShortcuts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ConfigShortcuts.h -------------------------------------------------------------------------------- /Source/ConfigSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ConfigSound.cpp -------------------------------------------------------------------------------- /Source/ConfigSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ConfigSound.h -------------------------------------------------------------------------------- /Source/ConfigVersion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ConfigVersion.cpp -------------------------------------------------------------------------------- /Source/ConfigVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ConfigVersion.h -------------------------------------------------------------------------------- /Source/ConfigWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ConfigWindow.cpp -------------------------------------------------------------------------------- /Source/ConfigWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ConfigWindow.h -------------------------------------------------------------------------------- /Source/ControlPanelDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ControlPanelDlg.cpp -------------------------------------------------------------------------------- /Source/ControlPanelDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ControlPanelDlg.h -------------------------------------------------------------------------------- /Source/CreateWaveDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/CreateWaveDlg.cpp -------------------------------------------------------------------------------- /Source/CreateWaveDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/CreateWaveDlg.h -------------------------------------------------------------------------------- /Source/CustomControls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/CustomControls.cpp -------------------------------------------------------------------------------- /Source/CustomControls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/CustomControls.h -------------------------------------------------------------------------------- /Source/CustomExporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/CustomExporter.cpp -------------------------------------------------------------------------------- /Source/CustomExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/CustomExporter.h -------------------------------------------------------------------------------- /Source/CustomExporterInterfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/CustomExporterInterfaces.h -------------------------------------------------------------------------------- /Source/CustomExporter_C_Interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/CustomExporter_C_Interface.cpp -------------------------------------------------------------------------------- /Source/CustomExporter_C_Interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/CustomExporter_C_Interface.h -------------------------------------------------------------------------------- /Source/CustomExporters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/CustomExporters.cpp -------------------------------------------------------------------------------- /Source/CustomExporters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/CustomExporters.h -------------------------------------------------------------------------------- /Source/DPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/DPI.cpp -------------------------------------------------------------------------------- /Source/DPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/DPI.h -------------------------------------------------------------------------------- /Source/DSample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/DSample.cpp -------------------------------------------------------------------------------- /Source/DSample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/DSample.h -------------------------------------------------------------------------------- /Source/DSampleManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/DSampleManager.cpp -------------------------------------------------------------------------------- /Source/DSampleManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/DSampleManager.h -------------------------------------------------------------------------------- /Source/DetuneDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/DetuneDlg.cpp -------------------------------------------------------------------------------- /Source/DetuneDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/DetuneDlg.h -------------------------------------------------------------------------------- /Source/DetuneTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/DetuneTable.cpp -------------------------------------------------------------------------------- /Source/DetuneTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/DetuneTable.h -------------------------------------------------------------------------------- /Source/DialogReBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/DialogReBar.cpp -------------------------------------------------------------------------------- /Source/DialogReBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/DialogReBar.h -------------------------------------------------------------------------------- /Source/DirectSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/DirectSound.cpp -------------------------------------------------------------------------------- /Source/DirectSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/DirectSound.h -------------------------------------------------------------------------------- /Source/DocumentFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/DocumentFile.cpp -------------------------------------------------------------------------------- /Source/DocumentFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/DocumentFile.h -------------------------------------------------------------------------------- /Source/DocumentWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/DocumentWrapper.cpp -------------------------------------------------------------------------------- /Source/DocumentWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/DocumentWrapper.h -------------------------------------------------------------------------------- /Source/Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/Driver.h -------------------------------------------------------------------------------- /Source/Exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/Exception.cpp -------------------------------------------------------------------------------- /Source/Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/Exception.h -------------------------------------------------------------------------------- /Source/ExportDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ExportDialog.cpp -------------------------------------------------------------------------------- /Source/ExportDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ExportDialog.h -------------------------------------------------------------------------------- /Source/FFT/FftBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/FFT/FftBuffer.h -------------------------------------------------------------------------------- /Source/FFT/FftComplex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/FFT/FftComplex.hpp -------------------------------------------------------------------------------- /Source/FTMComponentInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/FTMComponentInterface.h -------------------------------------------------------------------------------- /Source/Factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/Factory.h -------------------------------------------------------------------------------- /Source/FamiTracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/FamiTracker.cpp -------------------------------------------------------------------------------- /Source/FamiTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/FamiTracker.h -------------------------------------------------------------------------------- /Source/FamiTrackerDoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/FamiTrackerDoc.cpp -------------------------------------------------------------------------------- /Source/FamiTrackerDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/FamiTrackerDoc.h -------------------------------------------------------------------------------- /Source/FamiTrackerTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/FamiTrackerTypes.cpp -------------------------------------------------------------------------------- /Source/FamiTrackerTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/FamiTrackerTypes.h -------------------------------------------------------------------------------- /Source/FamiTrackerView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/FamiTrackerView.cpp -------------------------------------------------------------------------------- /Source/FamiTrackerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/FamiTrackerView.h -------------------------------------------------------------------------------- /Source/FamiTrackerViewMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/FamiTrackerViewMessage.h -------------------------------------------------------------------------------- /Source/FindDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/FindDlg.cpp -------------------------------------------------------------------------------- /Source/FindDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/FindDlg.h -------------------------------------------------------------------------------- /Source/FrameAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/FrameAction.cpp -------------------------------------------------------------------------------- /Source/FrameAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/FrameAction.h -------------------------------------------------------------------------------- /Source/FrameEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/FrameEditor.cpp -------------------------------------------------------------------------------- /Source/FrameEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/FrameEditor.h -------------------------------------------------------------------------------- /Source/FrameEditorTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/FrameEditorTypes.cpp -------------------------------------------------------------------------------- /Source/FrameEditorTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/FrameEditorTypes.h -------------------------------------------------------------------------------- /Source/GotoDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/GotoDlg.cpp -------------------------------------------------------------------------------- /Source/GotoDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/GotoDlg.h -------------------------------------------------------------------------------- /Source/GraphEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/GraphEditor.cpp -------------------------------------------------------------------------------- /Source/GraphEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/GraphEditor.h -------------------------------------------------------------------------------- /Source/Graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/Graphics.cpp -------------------------------------------------------------------------------- /Source/Graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/Graphics.h -------------------------------------------------------------------------------- /Source/Groove.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/Groove.cpp -------------------------------------------------------------------------------- /Source/Groove.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/Groove.h -------------------------------------------------------------------------------- /Source/GrooveDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/GrooveDlg.cpp -------------------------------------------------------------------------------- /Source/GrooveDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/GrooveDlg.h -------------------------------------------------------------------------------- /Source/HistoryFileDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/HistoryFileDlg.cpp -------------------------------------------------------------------------------- /Source/HistoryFileDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/HistoryFileDlg.h -------------------------------------------------------------------------------- /Source/InstHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/InstHandler.h -------------------------------------------------------------------------------- /Source/InstHandlerDPCM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/InstHandlerDPCM.cpp -------------------------------------------------------------------------------- /Source/InstHandlerDPCM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/InstHandlerDPCM.h -------------------------------------------------------------------------------- /Source/InstHandlerVRC7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/InstHandlerVRC7.cpp -------------------------------------------------------------------------------- /Source/InstHandlerVRC7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/InstHandlerVRC7.h -------------------------------------------------------------------------------- /Source/Instrument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/Instrument.cpp -------------------------------------------------------------------------------- /Source/Instrument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/Instrument.h -------------------------------------------------------------------------------- /Source/Instrument2A03.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/Instrument2A03.cpp -------------------------------------------------------------------------------- /Source/Instrument2A03.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/Instrument2A03.h -------------------------------------------------------------------------------- /Source/InstrumentEditDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/InstrumentEditDlg.cpp -------------------------------------------------------------------------------- /Source/InstrumentEditDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/InstrumentEditDlg.h -------------------------------------------------------------------------------- /Source/InstrumentEditPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/InstrumentEditPanel.cpp -------------------------------------------------------------------------------- /Source/InstrumentEditPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/InstrumentEditPanel.h -------------------------------------------------------------------------------- /Source/InstrumentEditorDPCM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/InstrumentEditorDPCM.cpp -------------------------------------------------------------------------------- /Source/InstrumentEditorDPCM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/InstrumentEditorDPCM.h -------------------------------------------------------------------------------- /Source/InstrumentEditorFDS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/InstrumentEditorFDS.cpp -------------------------------------------------------------------------------- /Source/InstrumentEditorFDS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/InstrumentEditorFDS.h -------------------------------------------------------------------------------- /Source/InstrumentEditorFDSEnvelope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/InstrumentEditorFDSEnvelope.cpp -------------------------------------------------------------------------------- /Source/InstrumentEditorFDSEnvelope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/InstrumentEditorFDSEnvelope.h -------------------------------------------------------------------------------- /Source/InstrumentEditorN163Wave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/InstrumentEditorN163Wave.cpp -------------------------------------------------------------------------------- /Source/InstrumentEditorN163Wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/InstrumentEditorN163Wave.h -------------------------------------------------------------------------------- /Source/InstrumentEditorSeq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/InstrumentEditorSeq.cpp -------------------------------------------------------------------------------- /Source/InstrumentEditorSeq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/InstrumentEditorSeq.h -------------------------------------------------------------------------------- /Source/InstrumentEditorVRC7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/InstrumentEditorVRC7.cpp -------------------------------------------------------------------------------- /Source/InstrumentEditorVRC7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/InstrumentEditorVRC7.h -------------------------------------------------------------------------------- /Source/InstrumentFDS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/InstrumentFDS.cpp -------------------------------------------------------------------------------- /Source/InstrumentFDS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/InstrumentFDS.h -------------------------------------------------------------------------------- /Source/InstrumentFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/InstrumentFactory.cpp -------------------------------------------------------------------------------- /Source/InstrumentFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/InstrumentFactory.h -------------------------------------------------------------------------------- /Source/InstrumentFileTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/InstrumentFileTree.cpp -------------------------------------------------------------------------------- /Source/InstrumentFileTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/InstrumentFileTree.h -------------------------------------------------------------------------------- /Source/InstrumentListCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/InstrumentListCtrl.cpp -------------------------------------------------------------------------------- /Source/InstrumentManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/InstrumentManager.cpp -------------------------------------------------------------------------------- /Source/InstrumentManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/InstrumentManager.h -------------------------------------------------------------------------------- /Source/InstrumentManagerInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/InstrumentManagerInterface.h -------------------------------------------------------------------------------- /Source/InstrumentN163.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/InstrumentN163.cpp -------------------------------------------------------------------------------- /Source/InstrumentN163.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/InstrumentN163.h -------------------------------------------------------------------------------- /Source/InstrumentRecorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/InstrumentRecorder.cpp -------------------------------------------------------------------------------- /Source/InstrumentRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/InstrumentRecorder.h -------------------------------------------------------------------------------- /Source/InstrumentS5B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/InstrumentS5B.cpp -------------------------------------------------------------------------------- /Source/InstrumentS5B.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/InstrumentS5B.h -------------------------------------------------------------------------------- /Source/InstrumentVRC6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/InstrumentVRC6.cpp -------------------------------------------------------------------------------- /Source/InstrumentVRC6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/InstrumentVRC6.h -------------------------------------------------------------------------------- /Source/InstrumentVRC7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/InstrumentVRC7.cpp -------------------------------------------------------------------------------- /Source/InstrumentVRC7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/InstrumentVRC7.h -------------------------------------------------------------------------------- /Source/IntRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/IntRange.h -------------------------------------------------------------------------------- /Source/MIDI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/MIDI.cpp -------------------------------------------------------------------------------- /Source/MIDI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/MIDI.h -------------------------------------------------------------------------------- /Source/MainFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/MainFrm.cpp -------------------------------------------------------------------------------- /Source/MainFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/MainFrm.h -------------------------------------------------------------------------------- /Source/ModSequenceEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ModSequenceEditor.cpp -------------------------------------------------------------------------------- /Source/ModSequenceEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ModSequenceEditor.h -------------------------------------------------------------------------------- /Source/ModuleException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ModuleException.cpp -------------------------------------------------------------------------------- /Source/ModuleException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ModuleException.h -------------------------------------------------------------------------------- /Source/ModuleImportDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ModuleImportDlg.cpp -------------------------------------------------------------------------------- /Source/ModuleImportDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ModuleImportDlg.h -------------------------------------------------------------------------------- /Source/ModulePropertiesDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ModulePropertiesDlg.cpp -------------------------------------------------------------------------------- /Source/ModulePropertiesDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/ModulePropertiesDlg.h -------------------------------------------------------------------------------- /Source/NoNotifyEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/NoNotifyEdit.cpp -------------------------------------------------------------------------------- /Source/NoNotifyEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/NoNotifyEdit.h -------------------------------------------------------------------------------- /Source/NoteQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/NoteQueue.cpp -------------------------------------------------------------------------------- /Source/NoteQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/NoteQueue.h -------------------------------------------------------------------------------- /Source/NumConv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/NumConv.h -------------------------------------------------------------------------------- /Source/OldSequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/OldSequence.cpp -------------------------------------------------------------------------------- /Source/OldSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/OldSequence.h -------------------------------------------------------------------------------- /Source/PCMImport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/PCMImport.cpp -------------------------------------------------------------------------------- /Source/PCMImport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/PCMImport.h -------------------------------------------------------------------------------- /Source/PatternAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/PatternAction.cpp -------------------------------------------------------------------------------- /Source/PatternAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/PatternAction.h -------------------------------------------------------------------------------- /Source/PatternCompiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/PatternCompiler.cpp -------------------------------------------------------------------------------- /Source/PatternCompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/PatternCompiler.h -------------------------------------------------------------------------------- /Source/PatternComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/PatternComponent.cpp -------------------------------------------------------------------------------- /Source/PatternComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/PatternComponent.h -------------------------------------------------------------------------------- /Source/PatternData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/PatternData.cpp -------------------------------------------------------------------------------- /Source/PatternData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/PatternData.h -------------------------------------------------------------------------------- /Source/PatternEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/PatternEditor.cpp -------------------------------------------------------------------------------- /Source/PatternEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/PatternEditor.h -------------------------------------------------------------------------------- /Source/PatternEditorTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/PatternEditorTypes.cpp -------------------------------------------------------------------------------- /Source/PatternEditorTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/PatternEditorTypes.h -------------------------------------------------------------------------------- /Source/PatternNote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/PatternNote.cpp -------------------------------------------------------------------------------- /Source/PatternNote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/PatternNote.h -------------------------------------------------------------------------------- /Source/PerformanceDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/PerformanceDlg.cpp -------------------------------------------------------------------------------- /Source/PerformanceDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/PerformanceDlg.h -------------------------------------------------------------------------------- /Source/RecordSettingsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/RecordSettingsDlg.cpp -------------------------------------------------------------------------------- /Source/RecordSettingsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/RecordSettingsDlg.h -------------------------------------------------------------------------------- /Source/RegisterState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/RegisterState.cpp -------------------------------------------------------------------------------- /Source/RegisterState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/RegisterState.h -------------------------------------------------------------------------------- /Source/SampleEditorDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/SampleEditorDlg.cpp -------------------------------------------------------------------------------- /Source/SampleEditorDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/SampleEditorDlg.h -------------------------------------------------------------------------------- /Source/SampleEditorView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/SampleEditorView.cpp -------------------------------------------------------------------------------- /Source/SampleEditorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/SampleEditorView.h -------------------------------------------------------------------------------- /Source/SeqInstHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/SeqInstHandler.cpp -------------------------------------------------------------------------------- /Source/SeqInstHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/SeqInstHandler.h -------------------------------------------------------------------------------- /Source/SeqInstHandler2A03Pulse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/SeqInstHandler2A03Pulse.cpp -------------------------------------------------------------------------------- /Source/SeqInstHandler2A03Pulse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/SeqInstHandler2A03Pulse.h -------------------------------------------------------------------------------- /Source/SeqInstHandlerFDS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/SeqInstHandlerFDS.cpp -------------------------------------------------------------------------------- /Source/SeqInstHandlerFDS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/SeqInstHandlerFDS.h -------------------------------------------------------------------------------- /Source/SeqInstHandlerN163.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/SeqInstHandlerN163.cpp -------------------------------------------------------------------------------- /Source/SeqInstHandlerN163.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/SeqInstHandlerN163.h -------------------------------------------------------------------------------- /Source/SeqInstHandlerS5B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/SeqInstHandlerS5B.cpp -------------------------------------------------------------------------------- /Source/SeqInstHandlerS5B.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/SeqInstHandlerS5B.h -------------------------------------------------------------------------------- /Source/SeqInstHandlerSawtooth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/SeqInstHandlerSawtooth.cpp -------------------------------------------------------------------------------- /Source/SeqInstHandlerSawtooth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/SeqInstHandlerSawtooth.h -------------------------------------------------------------------------------- /Source/SeqInstrument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/SeqInstrument.cpp -------------------------------------------------------------------------------- /Source/SeqInstrument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/SeqInstrument.h -------------------------------------------------------------------------------- /Source/Sequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/Sequence.cpp -------------------------------------------------------------------------------- /Source/Sequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/Sequence.h -------------------------------------------------------------------------------- /Source/SequenceCollection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/SequenceCollection.cpp -------------------------------------------------------------------------------- /Source/SequenceCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/SequenceCollection.h -------------------------------------------------------------------------------- /Source/SequenceEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/SequenceEditor.cpp -------------------------------------------------------------------------------- /Source/SequenceEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/SequenceEditor.h -------------------------------------------------------------------------------- /Source/SequenceEditorMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/SequenceEditorMessage.h -------------------------------------------------------------------------------- /Source/SequenceManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/SequenceManager.cpp -------------------------------------------------------------------------------- /Source/SequenceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/SequenceManager.h -------------------------------------------------------------------------------- /Source/SequenceParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/SequenceParser.cpp -------------------------------------------------------------------------------- /Source/SequenceParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/SequenceParser.h -------------------------------------------------------------------------------- /Source/SequenceSetting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/SequenceSetting.cpp -------------------------------------------------------------------------------- /Source/SequenceSetting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/SequenceSetting.h -------------------------------------------------------------------------------- /Source/Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/Settings.cpp -------------------------------------------------------------------------------- /Source/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/Settings.h -------------------------------------------------------------------------------- /Source/SimpleFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/SimpleFile.cpp -------------------------------------------------------------------------------- /Source/SimpleFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/SimpleFile.h -------------------------------------------------------------------------------- /Source/SizeEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/SizeEditor.cpp -------------------------------------------------------------------------------- /Source/SizeEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/SizeEditor.h -------------------------------------------------------------------------------- /Source/SoundGen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/SoundGen.cpp -------------------------------------------------------------------------------- /Source/SoundGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/SoundGen.h -------------------------------------------------------------------------------- /Source/SpeedDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/SpeedDlg.cpp -------------------------------------------------------------------------------- /Source/SpeedDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/SpeedDlg.h -------------------------------------------------------------------------------- /Source/SplitKeyboardDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/SplitKeyboardDlg.cpp -------------------------------------------------------------------------------- /Source/SplitKeyboardDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/SplitKeyboardDlg.h -------------------------------------------------------------------------------- /Source/StretchDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/StretchDlg.cpp -------------------------------------------------------------------------------- /Source/StretchDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/StretchDlg.h -------------------------------------------------------------------------------- /Source/SwapDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/SwapDlg.cpp -------------------------------------------------------------------------------- /Source/SwapDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/SwapDlg.h -------------------------------------------------------------------------------- /Source/TextExporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/TextExporter.cpp -------------------------------------------------------------------------------- /Source/TextExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/TextExporter.h -------------------------------------------------------------------------------- /Source/TrackerChannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/TrackerChannel.cpp -------------------------------------------------------------------------------- /Source/TrackerChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/TrackerChannel.h -------------------------------------------------------------------------------- /Source/TransposeDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/TransposeDlg.cpp -------------------------------------------------------------------------------- /Source/TransposeDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/TransposeDlg.h -------------------------------------------------------------------------------- /Source/VisualizerBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/VisualizerBase.cpp -------------------------------------------------------------------------------- /Source/VisualizerBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/VisualizerBase.h -------------------------------------------------------------------------------- /Source/VisualizerScope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/VisualizerScope.cpp -------------------------------------------------------------------------------- /Source/VisualizerScope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/VisualizerScope.h -------------------------------------------------------------------------------- /Source/VisualizerSpectrum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/VisualizerSpectrum.cpp -------------------------------------------------------------------------------- /Source/VisualizerSpectrum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/VisualizerSpectrum.h -------------------------------------------------------------------------------- /Source/VisualizerStatic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/VisualizerStatic.cpp -------------------------------------------------------------------------------- /Source/VisualizerStatic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/VisualizerStatic.h -------------------------------------------------------------------------------- /Source/VisualizerWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/VisualizerWnd.cpp -------------------------------------------------------------------------------- /Source/VisualizerWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/VisualizerWnd.h -------------------------------------------------------------------------------- /Source/WavProgressDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/WavProgressDlg.cpp -------------------------------------------------------------------------------- /Source/WavProgressDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/WavProgressDlg.h -------------------------------------------------------------------------------- /Source/WaveEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/WaveEditor.cpp -------------------------------------------------------------------------------- /Source/WaveEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/WaveEditor.h -------------------------------------------------------------------------------- /Source/WaveFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/WaveFile.cpp -------------------------------------------------------------------------------- /Source/WaveFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/WaveFile.h -------------------------------------------------------------------------------- /Source/WaveformGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/WaveformGenerator.cpp -------------------------------------------------------------------------------- /Source/WaveformGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/WaveformGenerator.h -------------------------------------------------------------------------------- /Source/WavegenBuiltin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/WavegenBuiltin.cpp -------------------------------------------------------------------------------- /Source/WavegenBuiltin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/WavegenBuiltin.h -------------------------------------------------------------------------------- /Source/WinSDK/VersionHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/WinSDK/VersionHelpers.h -------------------------------------------------------------------------------- /Source/WinSDK/winapifamily.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/WinSDK/winapifamily.h -------------------------------------------------------------------------------- /Source/array_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/array_view.h -------------------------------------------------------------------------------- /Source/drivers/asm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/drivers/asm/.gitignore -------------------------------------------------------------------------------- /Source/drivers/asm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/drivers/asm/LICENSE -------------------------------------------------------------------------------- /Source/drivers/asm/apu.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/drivers/asm/apu.s -------------------------------------------------------------------------------- /Source/drivers/asm/build/build_engine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/drivers/asm/build/build_engine.lua -------------------------------------------------------------------------------- /Source/drivers/asm/driver.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/drivers/asm/driver.s -------------------------------------------------------------------------------- /Source/drivers/asm/effects.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/drivers/asm/effects.s -------------------------------------------------------------------------------- /Source/drivers/asm/fds.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/drivers/asm/fds.s -------------------------------------------------------------------------------- /Source/drivers/asm/init.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/drivers/asm/init.s -------------------------------------------------------------------------------- /Source/drivers/asm/instrument.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/drivers/asm/instrument.s -------------------------------------------------------------------------------- /Source/drivers/asm/longbranch.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/drivers/asm/longbranch.mac -------------------------------------------------------------------------------- /Source/drivers/asm/mmc5.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/drivers/asm/mmc5.s -------------------------------------------------------------------------------- /Source/drivers/asm/n163.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/drivers/asm/n163.s -------------------------------------------------------------------------------- /Source/drivers/asm/nsf.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/drivers/asm/nsf.cfg -------------------------------------------------------------------------------- /Source/drivers/asm/nsf_wrap.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/drivers/asm/nsf_wrap.s -------------------------------------------------------------------------------- /Source/drivers/asm/periods.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/drivers/asm/periods.s -------------------------------------------------------------------------------- /Source/drivers/asm/player.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/drivers/asm/player.s -------------------------------------------------------------------------------- /Source/drivers/asm/s5b.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/drivers/asm/s5b.s -------------------------------------------------------------------------------- /Source/drivers/asm/sfx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/drivers/asm/sfx.s -------------------------------------------------------------------------------- /Source/drivers/asm/vibrato.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/drivers/asm/vibrato.s -------------------------------------------------------------------------------- /Source/drivers/asm/vrc6.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/drivers/asm/vrc6.s -------------------------------------------------------------------------------- /Source/drivers/asm/vrc7.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/drivers/asm/vrc7.s -------------------------------------------------------------------------------- /Source/drivers/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/drivers/build.cmd -------------------------------------------------------------------------------- /Source/drivers/drv_2a03.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/drivers/drv_2a03.h -------------------------------------------------------------------------------- /Source/drivers/drv_all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/drivers/drv_all.h -------------------------------------------------------------------------------- /Source/drivers/drv_fds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/drivers/drv_fds.h -------------------------------------------------------------------------------- /Source/drivers/drv_mmc5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/drivers/drv_mmc5.h -------------------------------------------------------------------------------- /Source/drivers/drv_n163.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/drivers/drv_n163.h -------------------------------------------------------------------------------- /Source/drivers/drv_s5b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/drivers/drv_s5b.h -------------------------------------------------------------------------------- /Source/drivers/drv_vrc6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/drivers/drv_vrc6.h -------------------------------------------------------------------------------- /Source/drivers/drv_vrc7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/drivers/drv_vrc7.h -------------------------------------------------------------------------------- /Source/json/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/json/json.hpp -------------------------------------------------------------------------------- /Source/resampler/resample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/resampler/resample.cpp -------------------------------------------------------------------------------- /Source/resampler/resample.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/resampler/resample.hpp -------------------------------------------------------------------------------- /Source/resampler/resample.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/resampler/resample.inl -------------------------------------------------------------------------------- /Source/resampler/sinc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/resampler/sinc.cpp -------------------------------------------------------------------------------- /Source/resampler/sinc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/resampler/sinc.hpp -------------------------------------------------------------------------------- /Source/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/stdafx.cpp -------------------------------------------------------------------------------- /Source/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/stdafx.h -------------------------------------------------------------------------------- /Source/str_conv/str_conv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/str_conv/str_conv.hpp -------------------------------------------------------------------------------- /Source/str_conv/utf8_conv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/str_conv/utf8_conv.hpp -------------------------------------------------------------------------------- /Source/to_sv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/to_sv.h -------------------------------------------------------------------------------- /Source/type_safe/arithmetic_policy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/type_safe/arithmetic_policy.hpp -------------------------------------------------------------------------------- /Source/type_safe/boolean.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/type_safe/boolean.hpp -------------------------------------------------------------------------------- /Source/type_safe/bounded_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/type_safe/bounded_type.hpp -------------------------------------------------------------------------------- /Source/type_safe/compact_optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/type_safe/compact_optional.hpp -------------------------------------------------------------------------------- /Source/type_safe/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/type_safe/config.hpp -------------------------------------------------------------------------------- /Source/type_safe/constrained_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/type_safe/constrained_type.hpp -------------------------------------------------------------------------------- /Source/type_safe/deferred_construction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/type_safe/deferred_construction.hpp -------------------------------------------------------------------------------- /Source/type_safe/detail/aligned_union.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/type_safe/detail/aligned_union.hpp -------------------------------------------------------------------------------- /Source/type_safe/detail/all_of.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/type_safe/detail/all_of.hpp -------------------------------------------------------------------------------- /Source/type_safe/detail/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/type_safe/detail/assert.hpp -------------------------------------------------------------------------------- /Source/type_safe/detail/assign_or_construct.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/type_safe/detail/assign_or_construct.hpp -------------------------------------------------------------------------------- /Source/type_safe/detail/constant_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/type_safe/detail/constant_parser.hpp -------------------------------------------------------------------------------- /Source/type_safe/detail/copy_move_control.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/type_safe/detail/copy_move_control.hpp -------------------------------------------------------------------------------- /Source/type_safe/detail/force_inline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/type_safe/detail/force_inline.hpp -------------------------------------------------------------------------------- /Source/type_safe/detail/is_nothrow_swappable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/type_safe/detail/is_nothrow_swappable.hpp -------------------------------------------------------------------------------- /Source/type_safe/detail/map_invoke.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/type_safe/detail/map_invoke.hpp -------------------------------------------------------------------------------- /Source/type_safe/detail/variant_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/type_safe/detail/variant_impl.hpp -------------------------------------------------------------------------------- /Source/type_safe/downcast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/type_safe/downcast.hpp -------------------------------------------------------------------------------- /Source/type_safe/flag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/type_safe/flag.hpp -------------------------------------------------------------------------------- /Source/type_safe/flag_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/type_safe/flag_set.hpp -------------------------------------------------------------------------------- /Source/type_safe/floating_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/type_safe/floating_point.hpp -------------------------------------------------------------------------------- /Source/type_safe/index.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/type_safe/index.hpp -------------------------------------------------------------------------------- /Source/type_safe/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/type_safe/integer.hpp -------------------------------------------------------------------------------- /Source/type_safe/narrow_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/type_safe/narrow_cast.hpp -------------------------------------------------------------------------------- /Source/type_safe/optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/type_safe/optional.hpp -------------------------------------------------------------------------------- /Source/type_safe/optional_ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/type_safe/optional_ref.hpp -------------------------------------------------------------------------------- /Source/type_safe/output_parameter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/type_safe/output_parameter.hpp -------------------------------------------------------------------------------- /Source/type_safe/reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/type_safe/reference.hpp -------------------------------------------------------------------------------- /Source/type_safe/strong_typedef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/type_safe/strong_typedef.hpp -------------------------------------------------------------------------------- /Source/type_safe/tagged_union.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/type_safe/tagged_union.hpp -------------------------------------------------------------------------------- /Source/type_safe/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/type_safe/types.hpp -------------------------------------------------------------------------------- /Source/type_safe/variant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/type_safe/variant.hpp -------------------------------------------------------------------------------- /Source/type_safe/visitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/type_safe/visitor.hpp -------------------------------------------------------------------------------- /Source/utils/ftmath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/utils/ftmath.cpp -------------------------------------------------------------------------------- /Source/utils/ftmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/utils/ftmath.h -------------------------------------------------------------------------------- /Source/utils/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/Source/utils/input.h -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/changelog.txt -------------------------------------------------------------------------------- /cmake/exe.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/cmake/exe.cmake -------------------------------------------------------------------------------- /cmake/mfc.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/cmake/mfc.cmake.in -------------------------------------------------------------------------------- /name.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #define APP_NAME "j0CC-FamiTracker" 3 | -------------------------------------------------------------------------------- /res/0CC-FamiTracker.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/res/0CC-FamiTracker.manifest -------------------------------------------------------------------------------- /res/0CC-FamiTracker.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/res/0CC-FamiTracker.rc -------------------------------------------------------------------------------- /res/About.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/res/About.bmp -------------------------------------------------------------------------------- /res/Application.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/res/Application.ico -------------------------------------------------------------------------------- /res/Document.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/res/Document.ico -------------------------------------------------------------------------------- /res/Inst_2A03.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/res/Inst_2A03.ico -------------------------------------------------------------------------------- /res/Inst_2A07.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/res/Inst_2A07.ico -------------------------------------------------------------------------------- /res/Inst_FDS.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/res/Inst_FDS.ico -------------------------------------------------------------------------------- /res/Inst_N163.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/res/Inst_N163.ico -------------------------------------------------------------------------------- /res/Inst_S5B.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/res/Inst_S5B.ico -------------------------------------------------------------------------------- /res/Inst_VRC6.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/res/Inst_VRC6.ico -------------------------------------------------------------------------------- /res/Inst_VRC7.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/res/Inst_VRC7.ico -------------------------------------------------------------------------------- /res/InstrumentToolbar-16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/res/InstrumentToolbar-16.bmp -------------------------------------------------------------------------------- /res/InstrumentToolbar-256.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/res/InstrumentToolbar-256.bmp -------------------------------------------------------------------------------- /res/LeftArrow.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/res/LeftArrow.ico -------------------------------------------------------------------------------- /res/MainToolbar-16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/res/MainToolbar-16.bmp -------------------------------------------------------------------------------- /res/MainToolbar-256.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/res/MainToolbar-256.bmp -------------------------------------------------------------------------------- /res/RightArrow.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/res/RightArrow.ico -------------------------------------------------------------------------------- /res/key_black_pressed.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/res/key_black_pressed.bmp -------------------------------------------------------------------------------- /res/key_black_unpressed.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/res/key_black_unpressed.bmp -------------------------------------------------------------------------------- /res/key_white_pressed.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/res/key_white_pressed.bmp -------------------------------------------------------------------------------- /res/key_white_unpressed.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/res/key_white_unpressed.bmp -------------------------------------------------------------------------------- /res/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/res/resource.h -------------------------------------------------------------------------------- /specs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/specs.txt -------------------------------------------------------------------------------- /version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyanpasu64/j0CC-FamiTracker/HEAD/version.h --------------------------------------------------------------------------------