Skip to content

Commit

Permalink
few more changes
Browse files Browse the repository at this point in the history
  • Loading branch information
uyjulian committed Jan 20, 2015
1 parent a8cf878 commit 451ca38
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ all: $(EXENAME)

$(EXENAME): $(OBJDIR) $(OBJS)
$(LD)
$(OBJDIR)emu.o: emu.c it.h emu.h sound.h sneese_spc.h spc2ittypes.h
$(OBJDIR)emu.o: emu.c emu.h sound.h sneese_spc.h spc2ittypes.h
$(CC) -c emu.c -o $(OBJDIR)emu.o
$(OBJDIR)it.o: it.c it.h emu.h sound.h sneese_spc.h spc2ittypes.h
$(CC) -c it.c -o $(OBJDIR)it.o
$(OBJDIR)main.o: main.c it.h emu.h sound.h sneese_spc.h spc2ittypes.h
$(CC) -c main.c -o $(OBJDIR)main.o
$(OBJDIR)sound.o: sound.c emu.h sound.h it.h sneese_spc.h spc2ittypes.h
$(OBJDIR)sound.o: sound.c emu.h sound.h sneese_spc.h spc2ittypes.h
$(CC) -c sound.c -o $(OBJDIR)sound.o
$(OBJDIR)spc700.o: spc700.c sneese_spc.h
$(CC) -c spc700.c -o $(OBJDIR)spc700.o
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Enter the executable's path in the command line, then press enter to see the syn
Bugs
====

IT speed is inconsistant.
None...

More information
================
Expand Down
1 change: 0 additions & 1 deletion sound.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@

#include "emu.h"
#include "sound.h"
#include "it.h"

sndvoice SNDvoices[8];
s32 SNDkeys, SNDratecnt;
Expand Down
1 change: 0 additions & 1 deletion sound.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
#define SOUND_H

#include "spc2ittypes.h"
#include "it.h"

#define ATTACK 0 // A of ADSR
#define DECAY 1 // D of ADSR
Expand Down

0 comments on commit 451ca38

Please sign in to comment.