1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-05-10 11:03:46 +00:00

Remove ‾ character from source files (#2371)

This commit is contained in:
cadmic 2024-12-15 09:22:45 -08:00 committed by GitHub
parent c9940faa22
commit 8056312c39
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 4 additions and 6 deletions

View file

@ -23,7 +23,6 @@
# Possibly from a SHIFT-JIS extension, python doesn't have builtin support
'┯' : (None, 0x86D3),
'‾' : (0x7F, None),
'À' : (0x80, None),
'î' : (0x81, None),
'Â' : (0x82, None),

View file

@ -522,11 +522,11 @@ void PreRender_CopyImageRegion(PreRender* this, Gfx** gfxP) {
* This filter performs a linear interpolation on partially covered pixels between the current pixel color (called
* foreground color) and a "background" pixel color obtained by sampling fully covered pixels at the six highlighted
* points in the following 5x3 neighborhood:
* _ _ _ _ _
* - - - - -
* | o o |
* | o X o |
* | o o |
*
* - - - - -
* Whether a pixel is partially covered is determined by reading the coverage values associated with the image.
* Coverage is a measure of how many subpixels the last drawn primitive covered. A fully covered pixel is one with a
* full coverage value, the entire pixel was covered by the primitive.

View file

@ -905,7 +905,7 @@ f32 sFontWidths[144] = {
5.0f, // '|'
7.0f, // '}'
10.0f, // '~'
10.0f, // ''
10.0f, // ' '
12.0f, // 'À'
#if OOT_NTSC
12.0f, // 'î'

View file

@ -84,7 +84,7 @@ void BgGndIceblock_Destroy(Actor* thisx, PlayState* play) {
* | 3 h8 15 19 |
* | 4 9 11 XX *20*|
* |*5* XX 12 *21*|
*
* ----------------------
* XX are rocks
* ** are pits
* h is the hole.

View file

@ -1814,7 +1814,6 @@ class MessageDecoderNES(MessageDecoder):
0x1F : ("TIME", "", None),
}
extraction_charmap = {
0x7F : '',
0x80 : 'À',
0x81 : 'î',
0x82 : 'Â',