praline
the white witch
I really hope that they reveal an actual dark type pokemon and not just an alolan form that make them dark type
Welcome to Smashboards, the world's largest Super Smash Brothers community! Over 250,000 Smash Bros. fans from around the world have come to discuss these great games in over 19 million posts!
You are currently viewing our boards as a visitor. Click here to sign up right now and start on your path in the Smash community!
Yup. Exactly. There's a ton of parts where enemies ambush you and you need to quickly get into cover and it just devolves into mashing the circle button everytime you respawn and pray you get into cover quickly enough.So it's like Halo 2 Legendary where you can be killed instantly upon starting a level by the damn Jackal snipers.
I'm kind of hoping that Litten's evolutions are Fire/Dark-type.I really hope that they reveal an actual dark type pokemon and not just an alolan form that make them dark type
Well if my idea turns out right you'll be 25% right,I'm kind of hoping that Litten's evolutions are Fire/Dark-type.
*checks list*I really hope that they reveal an actual dark type pokemon and not just an alolan form that make them dark type
Yeah, his sacrifice wasn't for nothing.Yeah, certainly bummed me out. But think of it this way: just like William A. before him, Caesar went out giving Joseph unique help in the end (Namely the antidote for his heart rings).
Wouldn't it be cool if it was a pirate pokemon?I really hope that they reveal an actual dark type pokemon and not just an alolan form that make them dark type
I wish I could comment on it, but this is getting way too technical for me to understand... Still, glad to see that your bugfixes are being appreciated.HI (I know I have been there more frequently lately, but I jsut like to talk about my dev stuff with dolphin).
FalKoopa so he can read it
Basically, I got what? 4 (technically 5, but one doesnt; count much) prs merged now and one that shoudl egt merged very soon.
So yeah, I keep contributing and I do have other ideas to contribute. All is related to the dolphin debugger btw, more on it later, but I found out why my fixes were actually more worthy than I thought.
These merges are:
The one that are pending:
- The insert nop/blr fix (the feature works withotu a manuall jit cache clear)
- A font fix (cause I didn;t see hey gorgeous on stuff and it made me sad )
- A crash fix when adding a memcheck while the emulator is running (that one thank god, it drove me crazy.....)
- A fix where the puase/play button woudl jsut not update when you reach a breakpoint, it might sound trivial, but believe me, when it breaks and you see "pause" instead of "play", it's so freaking annoying like even I knew the bug existed on master and I still had the feeling it was running.
So yeah, as you can see, I went from "OOOOH I got a thingy merged!" to "oh I got like manyu ideas and soem get merged". Like seriosuly, I went from idk the experience of contributing to FOSS to I am a member of the dolphin organisation and I submit prs and they get merged. Seriosuly I even got featuered on their progress report ( here: https://dolphin-emu.org/blog/2016/0...and-50-471-debugger-improvements-by-aldelaro5 ) so you kinda see how quickly I get from litterally jsut a month. I mean look at this issue psoted by me before I started to submit codes:
- A fix when if you add a memcheck via the memory viewer, it woudln;t update the list (this is likely goign to be merged soon)
- Add the feature of deciding how to add a memcheck via the memory viewer (it was always with read, write, log and break which you mgiht not want)
- A fix when the registers wouldn't update when stepping over and steppign out (it\s very annoying lol)
- Fix a "double memcheck break" bug (more on it later, it was a very weird one).
- FORMAT THE REGISTERS WOOOOOOOOOOOOOOO (it's a 301 lines changes lol)
https://bugs.dolphin-emu.org/issues/9743
And if you check the pr that got it switched to fix pending, I am the author of this pr (I even had to ask josjuice to update that issue for me).
And then I see actuall random comments about peopel wanting my prs, lol check that one:
https://github.com/dolphin-emu/dolphin/pull/4013#issuecomment-245293580
So, how the heck did this happened while I jsut thought I was doign very trivial and small contributions that won;t be noticed by much?
Well, bare the registers format one (that one is huge and not trivial), they actually are trivial because they do simple things, but the key here is they are related to the debugger.
You see, I had a lengthy chat in the dev irc and basically, the debugger is very old code that eventually, not much people knew what to do with it. People knew there was several bugs with it (it works most of the time, the problem is there's very annoying ui and usability issues that just......they're frustrating). So that meant that the debugger is kinda unmaintained, there's improvements and features that comes from time to time, but as far as these issues goes.....not much happens.
I mean @Jdaster64 can even attest to that part (he uses the debugger for lots of stuff). i saw a thread he made saying where he can get a recent version where memchecks on write workls (they were broken since like beginning of 4.0 and fixed litterally some days ago becuase the merge took a month). The response he basically got was that it broke, so the onyl way is get an old version build......so he was stuck on VERY old build (we are talking at max, somethign like 4.0-3000 ish) only to have his memchecks works......that's annoying. I mean to put this in perspective, to get that thign fixed, I had to do lots of regressions test, find out what made it break, talk about it in the dev chjannel and one came with a fix and that fix was merged a month later on my request because I needed that fix to test another pr and the original dev didn;t had tiem to respond to a code review........yikes.
So, not much worked on it simply because.....not much had interest in it. It's like the TAS tools, it;s very uswefull, but limited to use case which explains why it would be less of a priority than soemthign big like "OMG THIS THING FIXES 5 GAMES GRAPHJICAL GLTICHES AHHHHH!"
Until I came and started to actually fix these things. I was litterally told that no one but me works on fixing it and it might delay the code review and merge stuff.
So now this explains everything. These fixes ARE very wanted, so much that 2 small one were on the progress report. The actuall reason these fixes are more than welcome is because someone finally is starting to work on fixing them. That, is why I underestimated the importance of my contributions.
So, what about that double memcheck break issue?
Well, to summarise my pr message (the full and technical version is here: https://github.com/dolphin-emu/dolphin/pull/4198 ), there was a bug with breakpoints and memchecks, it would just break.....but at innapropriate times.
Well what actually happened is......very weird. The game woudl break not once, but twice if you hit a memcheck and press play immediately after while it;s still enabled. That second break is obviously wrong so I looked at where that break comes from and it turns out it jsut came from the fucntion that checks your memcheck......but......you already checked it once, why you need to redo it again?
Well, the thign is, when you unpause, the code does a single step to fix a possible issue with having breakpoints at certain places. The problem is that single step will be performed on the instruction the previous memcheck would break to in this scenario which means it would perform the same read/write instruction. Because of that, it does another check if there's any memchecks that needs to be hit, but that will of course pass, it;s the same isntruction where it broke in the first palce and that break happens just as you unpause which is why it breaks a bit later.
That was quite fun to debug, but when doing the fix, I found a silly msditake showing me how needed the debugger is for fixes.
You can have an option to have a memcheck break, or not break (which you woudl think it;s a toggle switch). ERRR, it actually did.....nothing, it was set appropriately thorough the code, but nothing checks for it.......all this time, not one noticed it....lol
So that's it for now, I will do other fixes and stuff for the debugger but the ONE thing I really am starting to want desperately is.......having memcheck out of debug only build......cause it;s annoying and there;s not mcuh reaosns to keep them there anyway.
I'm pretty sure there will be one. Hopefully one based on folklore.I really hope that they reveal an actual dark type pokemon and not just an alolan form that make them dark type
[Full disclosure: I tend to be rather critical of Apple.]I wanted to respond to this earlier, but I forgot to do so then.
Don't have much to say about the PS4 Pro since I don't follow Playstation news that much.
As for the Applie iPhone 7, I don't mind it. I'm an Apple fan myself, and I'm pretty happy to see the iPhone finally has water resistance. The lack of a headphone jack was a bit worrying at first, but now that we know that an iPhone 7 package comes with a special headphone adapter, I'm OK with that.
I'm definitely getting the 7 soon since it's almost time for me to upgrade my phone, though I'm debating which iPhone 7 I should get and the color. It has the same dimensions as the 6/6S with the only difference being that it is slightly lighter, so the Steven Stone iPhone shield I currently have should still work for it. However, the patterns on the shield wouldn't translate well to the Jet Black color, yet that's one of the colors I'm more interested in getting at the moment. If I wanted to use the Steven Stone iPhone shield for my next phone, I'll probably have to buy a white and silver color.
Then there's also the improved battery life and dual-lense camera for the iPhone 7 Plus. The latter is pretty appealing to me since I like the option of having better quality photos if I need to zoom in.
Decisions, decisions.
Better than any of GT's recent theoriestheory: type:null evolves into missingno
today i found out YV with a crossbow and throne butt is stupid broken.She is!
And nuclear throne is pretty good.
Actually, I just today almost reached the Nuclear throne. It was the farthest I have ever gotten.
Yet I did not reach the nuclear throne.
they don't seem that bad, not for me anyway.Sorry I'm Late, But I Hate The IPhone7's New Changes.
It is. I in fact one upped that and one shotted Little hunter with super crossbow.today i found out YV with a crossbow and throne butt is stupid broken.
like, one-shots little hunter broken
try it sometime
Hello dude, long time no see.
What're you talking about? They're very courageous.Sorry I'm Late, But I Hate The IPhone7's New Changes.
You can get a more powerful smartphone at a cheaper price anyway.Tbh the iPhone 7 gives me more reasons to stay away from Apple; those things are expensive, gimmicky and the price inflates even more outside the US.
I recommend ASUS, well, if you live in Taiwan. Most of ASUS phones are under 10000 TWD(About 300$).I'm not sure your powerful means more battery life or CPU processing power?You can get a more powerful smartphone for a cheaper price anyway.
Yeah, I was talking about processing power. Though a longer battery life would be icing on the cake.I recommend ASUS, well, if you live in Taiwan. Most of ASUS phones are under 10000 TWD(About 300$).I'm not sure your powerful means more battery life or CPU processing power?
Like the ASUS' Zenfone 3 Ultra has bigger screen than IPhone 7 Plus, and it has a decent CPU. Battery life is also better than iPhone 7, with 4600mah.
If you only care about battery life, Zenfone Max is good too. It's even more cheaper here. It has 5000mah battery life, I'm not making this up. It only 6990 TWD( about 220 USD). This is the phone I'm planning to buy. Only if my dad won't mind me spend 6000$ though...
If it's processing power, there many other phones have a decent processing power compare to iPhone 7. And way more cheaper. It really depends on how you use your phone though. I don't really play mobile games on my phone.Yeah, I was talking about processing power. Though a longer battery life would be icing on the cake.
So is Taiwan here. There are many people with either Samsung, or Apple. HTC, SONY and barely ASUS are the runner ups.Samsung is the dominant smartphone company here, because its phones are affordable. There are local companies (notably Micromax), then there's Xiaomi and Lenovo (incl. Motorola).
Chinese companies in general are quite popular here because of their low prices and attractive specifications. Xiaomi especially has been pretty aggressively marketing itself.
Later.Hey FalKoopa .
I am currently writing a "TvTrope" page for a creature in my series The Heart of Ice.
By "TvTrope", I mean that I won't post it on TvTrope of course, but that I write like one.
So since I know you are a fan of TvTrope, do you think you could read it now or later?
OKLater.
I have a test tomorrow. I can do it after that.