Removing the sound the letters make in the monologue

Go down

20150512

Post 

Removing the sound the letters make in the monologue Empty Removing the sound the letters make in the monologue




Found it in MoN's source ;P

Code:
   ; *$74AB8-$74ADE LOCAL
    VWF_RenderSingle:
    {
        ; Renders a single character (non recursive)
        
        REP #$10
        
        LDX $1CD9
        
        ; Is it a space (as in, " ")
        LDA $7F1200, X : CMP.b #$59 : BEQ .blankCharacter
        
        ; no, so make some noise bitch
        SEP #$30
        
        LDA.b #$0C : STA $012F
    
    .blankCharacter
    
        REP #$30
        
        ; There's no point to this.... X's value is destroyed in the callee below.
        LDA $1CDD : ASL A : TAX
        
        SEP #$30
        
        JSR VWF_RenderCharacter
        
        LDA $1CD6 : STA $1CD5
        
        RTS
    }
^^I'll check this out if it works the way I want lol


Last edited by હેદρમ™ on Fri 12 Feb 2016 - 20:07; edited 1 time in total
avatar
Founder

Removing the sound the letters make in the monologue Image212

Since : 2012-06-19

Back to top Go down

Share this post on: reddit

Removing the sound the letters make in the monologue :: Comments

avatar

Post Tue 12 May 2015 - 12:03 by Founder

; no, so make some noise bitch
SEP #$30

LDA.b #$0C : STA $012F


At 0x74AC8 = Change 0C into 00 and the letters in the dialogue will be silent!

Thanks MoN for your source, it's very helpful!

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum