From: Drew Fisher <drew.m.fisher@gmail.com>
Date: Wed, 24 Feb 2010 02:18:17 +0000 (-0500)
Subject: Fix ISR macro so the interrupt routine gets in the interrupt vector.
X-Git-Url: http://git.zarvox.org/main.js?a=commitdiff_plain;h=33ed4ccfff1b58135f41651273681d2b5ef8d12c;p=usbsnes.git

Fix ISR macro so the interrupt routine gets in the interrupt vector.
---

diff --git a/main.c b/main.c
index 236766c..aee88a4 100644
--- a/main.c
+++ b/main.c
@@ -58,7 +58,7 @@ usbMsgLen_t usbFunctionSetup(uchar data[8]) {
 	return 0;   /* default for not implemented requests: return no data back to host */
 }
 
-ISR(TIMER1_COMPA) {
+ISR(TIMER1_COMPA_vect) {
 	buttonState.buttons = pollSnes();
 }