Changeset 831
- Timestamp:
- 11/08/09 06:56:41 (4 years ago)
- Location:
- trunk
- Files:
-
- 14 edited
-
Makefile (modified) (2 diffs)
-
platform/a2000/main.c (modified) (1 diff)
-
platform/a2000/sub/100c/lib.c (modified) (1 diff)
-
platform/g7/main.c (modified) (1 diff)
-
platform/g9/main.c (modified) (1 diff)
-
platform/ixus75_sd750/main.c (modified) (1 diff)
-
platform/ixus870_sd880/main.c (modified) (1 diff)
-
platform/ixus980_sd990/main.c (modified) (1 diff)
-
platform/s3is/main.c (modified) (1 diff)
-
platform/sx1/main.c (modified) (1 diff)
-
platform/sx10/main.c (modified) (1 diff)
-
platform/sx100is/main.c (modified) (1 diff)
-
platform/sx110is/main.c (modified) (1 diff)
-
platform/sx200is/main.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile
r829 r831 240 240 mv $(topdir)bin/$(VER)-sx1-200h-$(BUILD_NUMBER).zip $(topdir)bin/$(VER)-sx1-200h-$(BUILD_NUMBER)_BETA.zip 241 241 mv $(topdir)bin/$(VER)-sx1-201a-$(BUILD_NUMBER).zip $(topdir)bin/$(VER)-sx1-201a-$(BUILD_NUMBER)_BETA.zip 242 mv $(topdir)bin/$(VER)-sx10-100c-$(BUILD_NUMBER).zip $(topdir)bin/$(VER)-sx10-100c-$(BUILD_NUMBER)_BETA.zip243 mv $(topdir)bin/$(VER)-sx10-101b-$(BUILD_NUMBER).zip $(topdir)bin/$(VER)-sx10-101b-$(BUILD_NUMBER)_BETA.zip244 mv $(topdir)bin/$(VER)-sx10-102b-$(BUILD_NUMBER).zip $(topdir)bin/$(VER)-sx10-102b-$(BUILD_NUMBER)_BETA.zip245 mv $(topdir)bin/$(VER)-sx10-103a-$(BUILD_NUMBER).zip $(topdir)bin/$(VER)-sx10-103a-$(BUILD_NUMBER)_BETA.zip246 242 mv $(topdir)bin/$(VER)-sx200is-100c-$(BUILD_NUMBER).zip $(topdir)bin/$(VER)-sx200is-100c-$(BUILD_NUMBER)_BETA.zip 247 243 mv $(topdir)bin/$(VER)-sx200is-100d-$(BUILD_NUMBER).zip $(topdir)bin/$(VER)-sx200is-100d-$(BUILD_NUMBER)_BETA.zip … … 373 369 mv $(topdir)bin/sx1-201a-$(BUILD_NUMBER)-full.zip $(topdir)bin/sx1-201a-$(BUILD_NUMBER)-full_BETA.zip 374 370 mv $(topdir)bin/sx1-201a-$(BUILD_NUMBER).zip $(topdir)bin/sx1-201a-$(BUILD_NUMBER)_BETA.zip 375 mv $(topdir)bin/sx10-100c-$(BUILD_NUMBER)-full.zip $(topdir)bin/sx10-100c-$(BUILD_NUMBER)-full_BETA.zip376 mv $(topdir)bin/sx10-100c-$(BUILD_NUMBER).zip $(topdir)bin/sx10-100c-$(BUILD_NUMBER)_BETA.zip377 mv $(topdir)bin/sx10-101b-$(BUILD_NUMBER)-full.zip $(topdir)bin/sx10-101b-$(BUILD_NUMBER)-full_BETA.zip378 mv $(topdir)bin/sx10-101b-$(BUILD_NUMBER).zip $(topdir)bin/sx10-101b-$(BUILD_NUMBER)_BETA.zip379 mv $(topdir)bin/sx10-102b-$(BUILD_NUMBER)-full.zip $(topdir)bin/sx10-102b-$(BUILD_NUMBER)-full_BETA.zip380 mv $(topdir)bin/sx10-102b-$(BUILD_NUMBER).zip $(topdir)bin/sx10-102b-$(BUILD_NUMBER)_BETA.zip381 mv $(topdir)bin/sx10-103a-$(BUILD_NUMBER)-full.zip $(topdir)bin/sx10-103a-$(BUILD_NUMBER)-full_BETA.zip382 mv $(topdir)bin/sx10-103a-$(BUILD_NUMBER).zip $(topdir)bin/sx10-103a-$(BUILD_NUMBER)_BETA.zip383 371 mv $(topdir)bin/sx200is-100c-$(BUILD_NUMBER)-full.zip $(topdir)bin/sx200is-100c-$(BUILD_NUMBER)-full_BETA.zip 384 372 mv $(topdir)bin/sx200is-100c-$(BUILD_NUMBER).zip $(topdir)bin/sx200is-100c-$(BUILD_NUMBER)_BETA.zip -
trunk/platform/a2000/main.c
r799 r831 60 60 int mode, i, t=0xFF; 61 61 62 mode = (playrec_mode==2 || playrec_mode== 5)?MODE_REC:MODE_PLAY;62 mode = (playrec_mode==2 || playrec_mode==4 || playrec_mode==5)?MODE_REC:MODE_PLAY; 63 63 mode |= (physw_status[1] & 0x01000000)?0:MODE_SCREEN_OPENED; 64 64 mode |= (physw_status[1] & 0x00080000)?0:MODE_SCREEN_ROTATED; -
trunk/platform/a2000/sub/100c/lib.c
r797 r831 45 45 46 46 47 void *hook_raw_fptr()48 {49 // found at ROM:FFE46CBC50 return 0xEC04F0;51 }52 53 void *hook_raw_ret_addr()54 {55 return (void*)0; // What does this do? Doesn't seem to be called56 }57 58 59 47 long vid_get_bitmap_screen_width() 60 48 { -
trunk/platform/g7/main.c
r515 r831 71 71 int mode, i, t=0xFF; 72 72 73 mode = (playrec_mode==2 )?MODE_REC:MODE_PLAY;73 mode = (playrec_mode==2 || playrec_mode==4 || playrec_mode==5)?MODE_REC:MODE_PLAY; 74 74 75 75 _GetPropertyCase(PROPCASE_SHOOTING_MODE, &t, 4); -
trunk/platform/g9/main.c
r576 r831 93 93 int mode, i, t=0xFF; 94 94 95 mode = (playrec_mode==2 )?MODE_REC:MODE_PLAY;95 mode = (playrec_mode==2 || playrec_mode==4 || playrec_mode==5)?MODE_REC:MODE_PLAY; 96 96 97 97 _GetPropertyCase(PROPCASE_SHOOTING_MODE, &t, 4); -
trunk/platform/ixus75_sd750/main.c
r807 r831 68 68 int mode, i, t=0xFF; 69 69 70 mode = (playrec_mode==2 || playrec_mode== 5)?MODE_REC:MODE_PLAY;70 mode = (playrec_mode==2 || playrec_mode==4 || playrec_mode==5)?MODE_REC:MODE_PLAY; 71 71 // mode = (physw_status[2] & 0x4000)?MODE_REC:MODE_PLAY; 72 72 _GetPropertyCase(PROPCASE_SHOOTING_MODE, &t, 4); -
trunk/platform/ixus870_sd880/main.c
r760 r831 63 63 int mode, i, t=0xFF; 64 64 65 mode = (playrec_mode==2|| playrec_mode==5)?MODE_REC:MODE_PLAY;65 mode = (playrec_mode==2 || playrec_mode==4 || playrec_mode==5)?MODE_REC:MODE_PLAY; 66 66 67 67 _GetPropertyCase(PROPCASE_SHOOTING_MODE, &t, 4); -
trunk/platform/ixus980_sd990/main.c
r740 r831 98 98 int mode_get() { 99 99 int mode, i, t=0xFF; 100 mode = (physw_status[0] & 0x00200000)?MODE_REC:MODE_PLAY; 100 101 mode = (playrec_mode==2 || playrec_mode == 4 || playrec_mode==5)?MODE_REC:MODE_PLAY; 102 // mode = (physw_status[0] & 0x00200000)?MODE_REC:MODE_PLAY; 101 103 102 104 _GetPropertyCase(PROPCASE_SHOOTING_MODE, &t, 4); -
trunk/platform/s3is/main.c
r515 r831 83 83 int mode, i, t=0xFF; 84 84 85 mode = (playrec_mode==2 || playrec_mode== 5)?MODE_REC:MODE_PLAY;85 mode = (playrec_mode==2 || playrec_mode==4 || playrec_mode==5)?MODE_REC:MODE_PLAY; 86 86 mode |= (physw_status[1] & 0x00000001)?0:MODE_SCREEN_OPENED; 87 87 mode |= (physw_status[1] & 0x00000002)?0:MODE_SCREEN_ROTATED; -
trunk/platform/sx1/main.c
r736 r831 63 63 int mode, i, t=0xFF; 64 64 65 mode = (playrec_mode==2|| playrec_mode==5)?MODE_REC:MODE_PLAY;65 mode = (playrec_mode==2 || playrec_mode==4 || playrec_mode==5)?MODE_REC:MODE_PLAY; 66 66 mode |= (physw_status[1] & 0x01000000)?0:MODE_SCREEN_OPENED; 67 67 mode |= (physw_status[1] & 0x00080000)?0:MODE_SCREEN_ROTATED; -
trunk/platform/sx10/main.c
r736 r831 63 63 int mode, i, t=0xFF; 64 64 65 mode = (playrec_mode==2|| playrec_mode==5)?MODE_REC:MODE_PLAY;65 mode = (playrec_mode==2 || playrec_mode == 4 || playrec_mode==5)?MODE_REC:MODE_PLAY; 66 66 mode |= (physw_status[1] & 0x01000000)?0:MODE_SCREEN_OPENED; 67 67 mode |= (physw_status[1] & 0x00080000)?0:MODE_SCREEN_ROTATED; -
trunk/platform/sx100is/main.c
r596 r831 86 86 int mode, i, t=0xFF; 87 87 88 mode = (playrec_mode==2 || playrec_mode== 5)?MODE_REC:MODE_PLAY;88 mode = (playrec_mode==2 || playrec_mode==4 || playrec_mode==5)?MODE_REC:MODE_PLAY; 89 89 90 90 -
trunk/platform/sx110is/main.c
r822 r831 60 60 int mode, i, t=0xFF; 61 61 62 mode = (playrec_mode==2|| playrec_mode==5)?MODE_REC:MODE_PLAY;63 mode |= (physw_status[1] & 0x01000000)?0:MODE_SCREEN_OPENED;64 mode |= (physw_status[1] & 0x00080000)?0:MODE_SCREEN_ROTATED;62 mode = (playrec_mode==2 || playrec_mode==4 || playrec_mode==5)?MODE_REC:MODE_PLAY; 63 mode |= (physw_status[1] & 0x01000000)?0:MODE_SCREEN_OPENED; 64 mode |= (physw_status[1] & 0x00080000)?0:MODE_SCREEN_ROTATED; 65 65 66 66 _GetPropertyCase(PROPCASE_SHOOTING_MODE, &t, 4); -
trunk/platform/sx200is/main.c
r810 r831 116 116 int mode_get() { 117 117 int mode, i, t=0xFF; 118 mode = (playrec_mode==2 || playrec_mode== 5)?MODE_REC:MODE_PLAY;118 mode = (playrec_mode==2 || playrec_mode==4 || playrec_mode==5)?MODE_REC:MODE_PLAY; 119 119 120 120 _GetPropertyCase(PROPCASE_SHOOTING_MODE, &t, 4);
Note: See TracChangeset
for help on using the changeset viewer.