- 积分
- 33
- 实力分
- 点
- 金钱数
- 两
- 技术分
- 分
- 贡献分
- 分
|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
今天学习刷图标式温度计(非MP),用我的小m刷这个补丁。看不是很懂。在刷完Addition to PIT-table 补丁以及附带的图标补丁之后,刷主补丁的时候,刚到--
98: db04 ; spc icon no. for temperature < temp_minvk
这一句的时候,vk弹出对话框说:“
提示:28,block地址:0x00801378
如果你应用这个补丁,今后你将无法撤销,因为这个补丁中的一些或全部数据块没有旧数据!”
我想问问各位大大,这是正常的还是出现了错误呢???
另外,我看到这个补丁中很多感觉是程序的地方前面都有;号。 ;号不是注释的意思么,所以我把感觉是语句的部分的前面的分号去掉了,这样是正确的么?
期待各位大大的帮助~~~~~~谢谢~~~
附我去掉分号后的:
;* Accu Temperature As Graphic Indicator v1.5 *
;(c) benj9 (r) ACiD[mrp], avkiev, BuG
;M6Cv50 (p) Devil_997
;
08BFD6A: 02D000F08FFA C04641F7B8FA
+8012E0
#pragma enable old_equal_ff
00: FFB5214880473f27C74001200740012F
10: 03D0FFBCBEF0CBFF00BD9f2101220D1C ;14-->BL A08C028E
20: 0091019287227d2182230E98174DA847
30: 009568240F2501200321154A90470A21
40: 0902AA31401A00210A061116401803D5
50: 2D230235635340420E4F0F4E963801D5
60: 321C0BE0C0210031884201DB3A1C05E0
70: C117090F08180949001142187d208721
80: 074B9847C5E700000d1d8da0f7028ca0 ; 88-->GetProfile,8C-->DrawCanvas
90: 6cae22a1dc040000db040000de040000 ; 90-->GetAccu
A0: 1d038ca0 ;--> DrawImage
#pragma disable old_equal_ff
; there are 14 pictures.
; 1 pic below temp_min, 1 pic over temp_max, 12 pics in the range of temp_min to temp_max
; for demonstration the built-in accu icons are used, feel free to create your own set of icons
; uncomment lines 98-9C to use attached pics set
; in this case * Addition To PIT Table * patch must be installed
# picture numbers #
98: db04 ; spc icon no. for temperature < temp_min
94: dc04 ; spc icon no. for temperature >= (temp_min+range)
9C: de04 ; spc icon no. of first icon (12 pics for a range from temp_min to temp_max (like accu indicator pics)
##########
# icon position #
7C: 7d ; icon_x_start
7E: 87 ; icon_y_start
##########
# canvas (erase background under icon) position #
26: 7d ; canvas_x_start
28: 82 ; canvas_x_end ; x_start + iconwidth
24: 87 ; canvas_y_start
1A: 9e ; canvas_y_end ; y_start + iconheight
##########
# minimum temperature for display #
5C: 96 96 ; temp_min: minimum temperature ( 0xB4 = 180 = 18°C),(0x96=150=15°)
; temp_max: temp_min + range (range is (a) 19.2°C or (b) 38.4°C)
##########
# range of display #
; you can make the range of the 12 icons between temp_min and temp_max 19.2°C or 38.4°C
; following lines: (a) range is 19.2°C, (b) range is 38.4°C
72: 090F C90E ; (a):090F, (b):C90E
78: 0011 4011 ; (a):0011, (b):4011
66: 00 C0 ; (a):00, (b):C0
##########
# temperature calibration #
34: 0F 0i015 ; Adjust temperature by 0.1°C: 000 - TBA, 030 - TEN, 015 - (TBA+TEN)/2, -010 - TBA-1
##########
# profile configuration #
; every single bit of the profile key represents a profile,
; the most left one is profile no. 7, the most right one profile no. 1
; to activate patch in a certain profile, set the according bit to 1
; example: 0n0100101 - patch is active in profiles no. 1, 3 and 6
06: 3F 0n0111111 ; profile key
##########
# canvas mode #
2A: 0E98 0020 ; normally line is turned off
; turn on line means: canvas doesn't select a background automatically, but
; erases always with SkinApplicationIdleImage. use with an activated background
; image on phone to calibrate canvas |
|