├── .gitattributes ├── .github ├── calcrom │ ├── calcrom.pl │ └── webhook.sh └── workflows │ └── build.yml ├── .gitignore ├── .travis.old └── calcrom │ ├── calcrom.pl │ └── webhook.sh ├── .travis.yml.old ├── Makefile ├── Notes about game.txt ├── README.md ├── asm ├── macros.inc ├── macros │ ├── function.inc │ ├── m4a.inc │ ├── music_voice.inc │ └── scriptcmd.inc └── rom_header.inc ├── asmdiff.sh ├── config.mk ├── constants ├── constants.inc ├── gba.inc └── m4a.inc ├── data ├── graphics.s ├── sound_data.s └── sound_data2.s ├── graphics.mk ├── graphics ├── animations │ ├── animation01.seq │ ├── animation02.seq │ ├── animation03.seq │ ├── animation04.seq │ ├── animation05.seq │ ├── animation06.seq │ ├── animation07.seq │ ├── animation08.seq │ ├── animation09.seq │ ├── animation10.seq │ ├── animation11.seq │ ├── animation12.seq │ ├── animation13.seq │ ├── animation14.seq │ ├── animation15.seq │ ├── animation16.seq │ ├── animation17.seq │ ├── animation18.seq │ ├── animation19.seq │ ├── animation20.seq │ ├── animation21.seq │ ├── animation22.seq │ ├── animation23.seq │ ├── animation24.seq │ ├── animation25.seq │ ├── animation26.seq │ ├── animation27.seq │ ├── animation28.seq │ ├── animation29.seq │ ├── animation30.seq │ ├── animation31.seq │ ├── animation32.seq │ ├── animation33.seq │ ├── animation34.seq │ ├── animation35.seq │ ├── animation36.seq │ ├── animation37.seq │ ├── animation38.seq │ ├── animation39.seq │ ├── animation40.seq │ ├── animation41.seq │ ├── animation42.seq │ ├── animation43.seq │ ├── animation44.seq │ ├── animation45.seq │ ├── animation46.seq │ ├── animation47.seq │ ├── animation48.seq │ ├── animation49.seq │ ├── animation50.seq │ ├── animation51.seq │ ├── animation52.seq │ ├── animation53.seq │ ├── animation54.seq │ ├── characters │ │ ├── animation01.pix │ │ ├── animation01.seq │ │ ├── animation02.pix │ │ ├── animation02.seq │ │ ├── animation03.pix │ │ ├── animation03.seq │ │ ├── animation04.pix │ │ ├── animation04.seq │ │ ├── animation05.pix │ │ ├── animation05.seq │ │ ├── animation06.pix │ │ ├── animation06.seq │ │ ├── animation07.pix │ │ ├── animation07.seq │ │ ├── animation08.pix │ │ ├── animation08.seq │ │ ├── animation09.pix │ │ ├── animation09.seq │ │ ├── animation10.pix │ │ ├── animation10.seq │ │ ├── animation11.pix │ │ ├── animation11.seq │ │ ├── animation12.pix │ │ ├── animation12.seq │ │ ├── animation13.pix │ │ ├── animation13.seq │ │ ├── animation14.pix │ │ ├── animation14.seq │ │ ├── animation15.pix │ │ ├── animation15.seq │ │ ├── animation16.pix │ │ ├── animation16.seq │ │ ├── animation17.pix │ │ ├── animation17.seq │ │ ├── animation18.pix │ │ ├── animation18.seq │ │ ├── animation19.pix │ │ ├── animation19.seq │ │ ├── animation20.pix │ │ ├── animation20.seq │ │ ├── animation21.pix │ │ ├── animation21.seq │ │ ├── animation22.pix │ │ ├── animation22.seq │ │ ├── animation23.pix │ │ ├── animation23.seq │ │ ├── animation24.pix │ │ ├── animation24.seq │ │ ├── animation25.pix │ │ ├── animation25.seq │ │ ├── animation26.pix │ │ └── animation26.seq │ ├── tileset01.pix │ └── tileset02.pix ├── bustup_edgeworth.bin ├── bustup_edgeworth.png ├── bustup_phoenix.bin ├── bustup_phoenix.png ├── charset.png ├── choice_greyed_out.pal ├── choice_selected.pal ├── common2.pal ├── court_scrolls │ ├── court_scroll01.png │ ├── court_scroll02.png │ ├── court_scroll03.png │ ├── court_scroll04.png │ ├── court_scroll05.png │ ├── court_scroll06.png │ ├── court_scroll07.png │ ├── court_scroll08.png │ ├── court_scroll09.png │ ├── court_scroll10.png │ ├── court_scroll11.png │ ├── court_scroll12.png │ ├── court_scroll13.png │ ├── court_scroll14.png │ ├── court_scroll15.png │ ├── court_scroll16.png │ ├── court_scroll17.png │ ├── court_scroll18.png │ ├── court_scroll19.png │ ├── court_scroll20.png │ ├── court_scroll21.png │ ├── court_scroll22.png │ ├── court_scroll23.png │ ├── court_scroll24.png │ ├── court_scroll25.png │ ├── court_scroll26.png │ ├── court_scroll27.png │ ├── court_scroll28.png │ ├── court_scroll29.png │ ├── court_scroll30.png │ ├── court_scroll31.png │ ├── court_scroll32.png │ ├── court_scroll33.png │ ├── court_scroll34.png │ ├── court_scroll35.png │ ├── court_scroll36.png │ ├── court_scroll37.png │ ├── court_scroll38.png │ ├── court_scroll39.png │ ├── court_scroll40.png │ ├── court_scroll41.png │ ├── court_scroll42.png │ ├── court_scroll43.png │ ├── court_scroll44.png │ ├── court_scroll45.png │ ├── court_scroll46.png │ ├── court_scroll47.png │ └── court_scroll48.png ├── episode_select_options.png ├── evidence_profile_descriptions │ ├── evidence │ │ ├── air_tube.png │ │ ├── article_gourdy.png │ │ ├── bullet_0.png │ │ ├── bullet_1.png │ │ ├── cindy_stones_passport.png │ │ ├── codys_digital_camera.png │ │ ├── codys_steel_samurai_scrapbook.png │ │ ├── dl-6_bullet.png │ │ ├── empty_bottle_0.png │ │ ├── empty_bottle_1.png │ │ ├── empty_plate.png │ │ ├── firecrackers.png │ │ ├── fishing_pole.png │ │ ├── generic_affidavit_0.png │ │ ├── generic_affidavit_1.png │ │ ├── generic_affidavit_2.png │ │ ├── generic_affidavit_3.png │ │ ├── generic_affidavit_4.png │ │ ├── generic_affidavit_5.png │ │ ├── generic_autopsy_report_0.png │ │ ├── generic_autopsy_report_1.png │ │ ├── generic_autopsy_report_2.png │ │ ├── generic_autopsy_report_3.png │ │ ├── generic_autopsy_report_4.png │ │ ├── generic_autopsy_report_5.png │ │ ├── generic_autopsy_report_6.png │ │ ├── generic_autopsy_report_7.png │ │ ├── generic_letter_0.png │ │ ├── generic_letter_1.png │ │ ├── generic_letter_2.png │ │ ├── generic_letter_3.png │ │ ├── generic_newspaper_clipping.png │ │ ├── generic_photo_0.png │ │ ├── generic_photo_1.png │ │ ├── generic_photo_2.png │ │ ├── generic_photo_3.png │ │ ├── generic_photo_4.png │ │ ├── generic_photo_5.png │ │ ├── generic_photo_6.png │ │ ├── generic_photo_7.png │ │ ├── generic_photo_8.png │ │ ├── generic_photo_9.png │ │ ├── glass_shards.png │ │ ├── global_studios_card_key.png │ │ ├── global_studios_van.png │ │ ├── key_to_cottage.png │ │ ├── lottas_camera_0.png │ │ ├── lottas_camera_1.png │ │ ├── maya_memo.png │ │ ├── mayas_cellphone.png │ │ ├── metal_detector.png │ │ ├── missile.png │ │ ├── missile_angry.png │ │ ├── mr_monkey.png │ │ ├── note_from_the_safe.png │ │ ├── phoenix_badge.png │ │ ├── pistol.png │ │ ├── plate_with_steak_bones.png │ │ ├── polly.png │ │ ├── steel_samurai_cards.png │ │ ├── steel_samurai_script.png │ │ ├── steel_samurai_spear_0.png │ │ ├── steel_samurai_spear_1.png │ │ ├── steel_samurai_ultra_rare_card.png │ │ ├── the_thinker_0.png │ │ ├── the_thinker_1.png │ │ ├── the_thinker_2.png │ │ ├── wiretap.png │ │ └── yannis_safe.png │ ├── evidence_profile_descriptions.pal │ └── profiles │ │ ├── april_may_0.png │ │ ├── april_may_1.png │ │ ├── april_may_2.png │ │ ├── bellboy_0.png │ │ ├── bellboy_1.png │ │ ├── cindy_stone.png │ │ ├── cody_hackins.png │ │ ├── dee_vasquez.png │ │ ├── dick_gumshoe.png │ │ ├── frank_sahwit.png │ │ ├── gregory_edgeworth.png │ │ ├── jack_hammer.png │ │ ├── larry_butz_0.png │ │ ├── larry_butz_1.png │ │ ├── lotta_hart_0.png │ │ ├── lotta_hart_1.png │ │ ├── manfred_von_karma.png │ │ ├── marvin_grossberg.png │ │ ├── maya_fey_0.png │ │ ├── maya_fey_1.png │ │ ├── maya_fey_2.png │ │ ├── maya_fey_3.png │ │ ├── mia_fey_0.png │ │ ├── mia_fey_1.png │ │ ├── miles_edgeworth_0.png │ │ ├── miles_edgeworth_1.png │ │ ├── misty_fey_0.png │ │ ├── misty_fey_1.png │ │ ├── misty_fey_2.png │ │ ├── old_man_0.png │ │ ├── old_man_1.png │ │ ├── penny_nichols.png │ │ ├── redd_white_0.png │ │ ├── redd_white_1.png │ │ ├── robert_hammond.png │ │ ├── sal_manella.png │ │ ├── wendy_oldbag.png │ │ ├── will_powers.png │ │ └── winston_payne.png ├── evidence_profile_pictures │ ├── evidence │ │ ├── air_tube.png │ │ ├── article_gourdy.png │ │ ├── bullet.png │ │ ├── cindy_stones_passport.png │ │ ├── codys_digital_camera.png │ │ ├── codys_steel_samurai_scrapbook.png │ │ ├── dl-6_bullet.png │ │ ├── empty_bottle.png │ │ ├── empty_plate.png │ │ ├── firecrackers.png │ │ ├── fishing_pole.png │ │ ├── generic_affidavit.png │ │ ├── generic_autopsy_report.png │ │ ├── generic_letter.png │ │ ├── generic_newspaper_clipping.png │ │ ├── generic_photo.png │ │ ├── glass_shards.png │ │ ├── global_studios_card_key.png │ │ ├── global_studios_van.png │ │ ├── key_to_cottage.png │ │ ├── lottas_camera.png │ │ ├── maya_memo.png │ │ ├── mayas_cellphone.png │ │ ├── metal_detector.png │ │ ├── missile.png │ │ ├── missile_angry.png │ │ ├── mr_monkey.png │ │ ├── note_from_the_safe.png │ │ ├── phoenix_badge.png │ │ ├── pistol.png │ │ ├── plate_with_steak_bones.png │ │ ├── polly.png │ │ ├── steel_samurai_cards.png │ │ ├── steel_samurai_script.png │ │ ├── steel_samurai_spear.png │ │ ├── steel_samurai_ultra_rare_card.png │ │ ├── the_thinker.png │ │ ├── wiretap.png │ │ └── yannis_safe.png │ └── profiles │ │ ├── april_may.png │ │ ├── bellboy.png │ │ ├── cindy_stone.png │ │ ├── cody_hackins.png │ │ ├── dee_vasquez.png │ │ ├── dick_gumshoe.png │ │ ├── frank_sahwit.png │ │ ├── gregory_edgeworth.png │ │ ├── jack_hammer.png │ │ ├── larry_butz.png │ │ ├── lotta_hart.png │ │ ├── manfred_von_karma.png │ │ ├── marvin_grossberg.png │ │ ├── maya_fey.png │ │ ├── mia_fey.png │ │ ├── miles_edgeworth.png │ │ ├── misty_fey.png │ │ ├── old_man.png │ │ ├── penny_nichols.png │ │ ├── redd_white.png │ │ ├── robert_hammond.png │ │ ├── sal_manella.png │ │ ├── wendy_oldbag.png │ │ ├── will_powers.png │ │ └── winston_payne.png ├── from_save_or_beginning_options.png ├── location_choices │ ├── 001FD96C.png │ ├── 001FE16C.png │ ├── 001FE96C.png │ ├── 001FF16C.png │ ├── 001FF96C.png │ ├── 0020016C.png │ ├── 0020096C.png │ ├── 0020116C.png │ ├── 0020196C.png │ ├── 0020216C.png │ ├── 0020296C.png │ ├── 0020316C.png │ ├── 0020396C.png │ ├── 0020416C.png │ ├── 0020496C.png │ ├── 0020516C.png │ ├── 0020596C.png │ ├── 0020616C.png │ ├── 0020696C.png │ ├── 0020716C.png │ └── 0020796C.png ├── map_markers │ ├── case2_mia_body.png │ ├── case2_thinker.png │ ├── case3_employee_area.png │ ├── case3_gate.png │ ├── case3_main_gate.png │ ├── case3_studio_1.png │ ├── case3_studio_2.png │ ├── case4_boat_horizontal.png │ ├── case4_boat_rental_shop.png │ ├── case4_boat_vertical.png │ ├── case4_lotta_suv.png │ ├── green.png │ ├── killer.png │ ├── palette.pal │ └── victim.png ├── save_yes_no.png ├── speedlines_first_and_last_columns.png ├── striped_images │ ├── backgrounds │ │ ├── bluecorp_ceo_office.png │ │ ├── court │ │ │ ├── co_counsel.png │ │ │ ├── court_room.png │ │ │ ├── defendant_lobby.png │ │ │ ├── defense_bench.png │ │ │ ├── judge_seat.png │ │ │ ├── prosecution_bench.png │ │ │ └── witness_stand.png │ │ ├── cutscenes │ │ │ ├── case1 │ │ │ │ ├── cindy_and_frank.png │ │ │ │ ├── cindy_dead_on_floor.png │ │ │ │ ├── frank_closeup_1.png │ │ │ │ ├── frank_closeup_2.png │ │ │ │ ├── frank_closeup_3.png │ │ │ │ └── frank_holding_thinker.png │ │ │ ├── case2 │ │ │ │ ├── april_calling_police.png │ │ │ │ ├── maya_seeing_dead_mia.png │ │ │ │ ├── mia_being_attacked.png │ │ │ │ ├── phoenix_maya_mia.png │ │ │ │ ├── redd_hitting_mia.png │ │ │ │ └── redd_holding_thinker.png │ │ │ └── case3 │ │ │ │ ├── pink_princess.png │ │ │ │ └── steel_samurai.png │ │ ├── detention_center.png │ │ ├── evidence │ │ │ ├── dl6_case_file_page_1.png │ │ │ ├── dl6_case_file_page_2.png │ │ │ ├── dl6_case_file_page_3.png │ │ │ ├── fey_co_diagram.png │ │ │ ├── fey_co_diagram_light.png │ │ │ ├── global_studio_diagram.png │ │ │ ├── maya_phone_call_page_1.png │ │ │ ├── maya_phone_call_page_2.png │ │ │ └── maya_phone_call_page_3.png │ │ ├── gatewater_hotelroom.png │ │ ├── gavel │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ └── 3.png │ │ ├── global_studios │ │ │ ├── front_gate.png │ │ │ ├── monkey_on_studio_2_path.png │ │ │ ├── staff_area.png │ │ │ ├── studio_1.png │ │ │ ├── studio_2.png │ │ │ ├── studio_2_trailer.png │ │ │ ├── studio_2_trailer_mafia.png │ │ │ ├── studio_path.png │ │ │ └── will_power_dressing_room.png │ │ ├── grossberg_law_offices │ │ │ ├── grossberg_law_offices_no_painting.png │ │ │ └── grossberg_law_offices_painting.png │ │ ├── witness_account │ │ │ ├── 5_year_old_photo.png │ │ │ ├── april_getting_room_service.png │ │ │ ├── cindy_finding_frank.png │ │ │ ├── cody_witnessing_samurai.png │ │ │ ├── frank_finding_cindy.png │ │ │ ├── frank_witnessing_larry.png │ │ │ ├── jack_at_gate_photo.png │ │ │ ├── jack_dead_at_studio_1.png │ │ │ ├── jack_wearing_samurai_suit.png │ │ │ ├── mia_dodging_left.png │ │ │ ├── mia_dodging_right.png │ │ │ ├── samurai_at_studio_2_photo.png │ │ │ ├── staff_eating_lunch.png │ │ │ ├── studio_2_jack_and_vasquez.png │ │ │ ├── vasquez_pushing_jack_aftermath.png │ │ │ └── will_power_injury.png │ │ └── wright_co_law_offices │ │ │ ├── fey_co_murder_night.png │ │ │ ├── mia_dead_on_ground.png │ │ │ ├── office_day.png │ │ │ └── office_entry_night.png │ ├── capcom_screen.png │ ├── capcom_screen_bw.png │ ├── case3_intro_faceoff.png │ ├── case3_intro_grass.png │ ├── case3_intro_steel_samurai_posing.png │ ├── case3_intro_trees.png │ ├── case4_balloon_landing_in_lake.png │ ├── case4_balloon_launching.png │ ├── case4_class_trial.png │ ├── case4_class_trial_edgeworth.png │ ├── case4_class_trial_larry.png │ ├── case4_class_trial_phoenix.png │ ├── case4_elevator_edgeworth_throw.png │ ├── case4_elevator_photo.png │ ├── case4_elevator_suffocating.png │ ├── case4_elevator_vonkarma_in_door.png │ ├── case4_elevator_vonkarma_shot.png │ ├── case4_gourd_lake_map.png │ ├── case4_intro_edgeworth_picks_gun_up.png │ ├── case4_intro_lake_one_in_boat.png │ ├── case4_intro_threatened_to_shoot.png │ ├── case4_larry_searching_lake.png │ ├── case4_lottas_photo_far.png │ ├── case4_lottas_photo_zoomed.png │ ├── case4_newspaper.png │ ├── case4_shoot_water_from_boat.png │ ├── case4_train_station.png │ ├── case4_train_station_maya_leaving.png │ ├── case4_yanni_threatening.png │ ├── coming_soon_screen.png │ ├── courtroom_background.png │ ├── gourd_lake_beach.png │ ├── gourd_lake_boat_rental.png │ ├── gourd_lake_boat_rental_house.png │ ├── gourd_lake_entrance.png │ ├── gourd_lake_park.png │ ├── gourd_lake_park_no_balloon.png │ ├── police_station_evidence_storage.png │ ├── police_station_lobby.png │ ├── speedlines.png │ ├── steel_samurai_night.png │ ├── title_screen_demo.png │ └── trial_won.png ├── talk_choices │ ├── 0020816C.png │ ├── 0020896C.png │ ├── 0020916C.png │ ├── 0020996C.png │ ├── 0020A16C.png │ ├── 0020A96C.png │ ├── 0020B16C.png │ ├── 0020B96C.png │ ├── 0020C16C.png │ ├── 0020C96C.png │ ├── 0020D16C.png │ ├── 0020D96C.png │ ├── 0020E16C.png │ ├── 0020E96C.png │ ├── 0020F16C.png │ ├── 0020F96C.png │ ├── 0021016C.png │ ├── 0021096C.png │ ├── 0021116C.png │ ├── 0021196C.png │ ├── 0021216C.png │ ├── 0021296C.png │ ├── 0021316C.png │ ├── 0021396C.png │ ├── 0021416C.png │ ├── 0021496C.png │ ├── 0021516C.png │ ├── 0021596C.png │ ├── 0021616C.png │ ├── 0021696C.png │ ├── 0021716C.png │ ├── 0021796C.png │ ├── 0021816C.png │ ├── 0021896C.png │ ├── 0021916C.png │ ├── 0021996C.png │ ├── 0021A16C.png │ ├── 0021A96C.png │ ├── 0021B16C.png │ ├── 0021B96C.png │ ├── 0021C16C.png │ ├── 0021C96C.png │ ├── 0021D16C.png │ ├── 0021D96C.png │ ├── 0021E16C.png │ ├── 0021E96C.png │ ├── 0021F16C.png │ ├── 0021F96C.png │ ├── 0022016C.png │ ├── 0022096C.png │ ├── 0022116C.png │ ├── 0022196C.png │ ├── 0022216C.png │ ├── 0022296C.png │ ├── 0022316C.png │ ├── 0022396C.png │ ├── 0022416C.png │ ├── 0022496C.png │ ├── 0022516C.png │ ├── 0022596C.png │ ├── 0022616C.png │ ├── 0022696C.png │ ├── 0022716C.png │ ├── 0022796C.png │ ├── 0022816C.png │ ├── 0022896C.png │ ├── 0022916C.png │ ├── 0022996C.png │ ├── 0022A16C.png │ ├── 0022A96C.png │ ├── 0022B16C.png │ ├── 0022B96C.png │ ├── 0022C16C.png │ ├── 0022C96C.png │ ├── 0022D16C.png │ ├── 0022D96C.png │ ├── 0022E16C.png │ ├── 0022E96C.png │ ├── 0022F16C.png │ ├── 0022F96C.png │ ├── 0023016C.png │ ├── 0023096C.png │ ├── 0023116C.png │ ├── 0023196C.png │ ├── 0023216C.png │ ├── 0023296C.png │ ├── 0023316C.png │ ├── 0023396C.png │ ├── 0023416C.png │ ├── 0023496C.png │ ├── 0023516C.png │ ├── 0023596C.png │ ├── 0023616C.png │ ├── 0023696C.png │ ├── 0023716C.png │ ├── 0023796C.png │ ├── 0023816C.png │ ├── 0023896C.png │ ├── 0023916C.png │ ├── 0023996C.png │ ├── 0023A16C.png │ ├── 0023A96C.png │ ├── 0023B16C.png │ ├── 0023B96C.png │ ├── 0023C16C.png │ ├── 0023C96C.png │ ├── 0023D16C.png │ ├── 0023D96C.png │ ├── 0023E16C.png │ ├── 0023E96C.png │ ├── 0023F16C.png │ ├── 0023F96C.png │ ├── 0024016C.png │ ├── 0024096C.png │ ├── 0024116C.png │ ├── 0024196C.png │ ├── 0024216C.png │ ├── 0024296C.png │ ├── 0024316C.png │ ├── 0024396C.png │ ├── 0024416C.png │ ├── 0024496C.png │ ├── 0024516C.png │ ├── 0024596C.png │ └── 0024616C.png ├── title_screen.png ├── title_screen_demo.png ├── ui │ ├── court_record │ │ ├── controller_buttons.png │ │ ├── controls_blurb.pal │ │ ├── evidence_text.png │ │ ├── present_back_text.png │ │ └── profiles_text.png │ ├── cross_examination_ui.pal │ ├── investigation │ │ ├── action_buttons.png │ │ ├── action_buttons_0.pal │ │ ├── action_buttons_1.pal │ │ ├── checkmark.png │ │ ├── examine_cursor.png │ │ ├── examine_cursor_00.pal │ │ ├── examine_cursor_01.pal │ │ ├── examine_cursor_02.pal │ │ ├── examine_cursor_03.pal │ │ ├── examine_cursor_04.pal │ │ ├── examine_cursor_05.pal │ │ ├── examine_cursor_06.pal │ │ ├── examine_cursor_07.pal │ │ ├── examine_cursor_08.pal │ │ ├── examine_cursor_09.pal │ │ ├── examine_cursor_10.pal │ │ ├── examine_cursor_11.pal │ │ ├── examine_cursor_12.pal │ │ ├── examine_cursor_13.pal │ │ ├── examine_cursor_14.pal │ │ ├── examine_cursor_15.pal │ │ ├── examine_cursor_16.pal │ │ └── scroll_prompt.png │ ├── left_right_arrows.png │ ├── message_box │ │ ├── nametags.png │ │ ├── save_game_tiles.png │ │ └── unk_013B70.bin │ ├── new_game_continue.png │ ├── new_game_continue_0.pal │ ├── new_game_continue_1.pal │ ├── new_game_continue_2.pal │ ├── new_game_continue_3.pal │ ├── new_game_continue_4.pal │ ├── new_game_continue_5.pal │ └── trial │ │ ├── confetti.png │ │ ├── confetti_0.pal │ │ ├── confetti_1.pal │ │ ├── confetti_2.pal │ │ ├── confetti_3.pal │ │ ├── exclamation_point.png │ │ ├── game_over_doors.png │ │ ├── game_over_text.png │ │ ├── guilty.pal │ │ ├── guilty1.png │ │ ├── guilty_not_guilty2.png │ │ ├── not_guilty.pal │ │ ├── not_guilty1.png │ │ ├── press_present_buttons.png │ │ ├── testimony_text_tiles.png │ │ └── unused_testimony_characters.png ├── unk_1940C0.pal ├── unk_194100.pal └── unused_ascii_charset.png ├── include ├── agb_sram.h ├── animation.h ├── background.h ├── case_data.h ├── constants │ ├── animation.h │ ├── animation_offsets.h │ ├── bg.h │ ├── court_record.h │ ├── oam_allocations.h │ ├── persons.h │ ├── process.h │ ├── script.h │ └── songs.h ├── court.h ├── court_record.h ├── declarations.h ├── ewram.h ├── global.h ├── graphics.h ├── investigation.h ├── m4a.h ├── m4a_internal.h ├── main.h ├── save.h ├── script.h ├── sound.h ├── structs.h └── utils.h ├── ld_script.txt ├── pwaa1.sha1 ├── pwaa1_rev1.sha1 ├── script ├── scenario_0_script.phscr ├── scenario_1_0_script.phscr ├── scenario_1_1_script.phscr ├── scenario_1_2_script.phscr ├── scenario_1_3_script.phscr ├── scenario_2_0_script.phscr ├── scenario_2_1_script.phscr ├── scenario_2_2_script.phscr ├── scenario_2_3_script.phscr ├── scenario_2_4_script.phscr ├── scenario_2_5_script.phscr ├── scenario_3_0_script.phscr ├── scenario_3_1_script.phscr ├── scenario_3_2_script.phscr ├── scenario_3_3_script.phscr ├── scenario_3_4_script.phscr ├── scenario_3_5_script.phscr └── std_scripts.phscr ├── songs.mk ├── sound ├── MPlayDef.s ├── direct_sound_samples │ ├── 080194EC.bin │ ├── 08019D00.bin │ ├── 0801A570.bin │ ├── 0802042C.bin │ ├── 08022080.bin │ ├── 08027B9C.bin │ ├── 0802A070.bin │ ├── 0802C5D0.bin │ ├── 08030CE4.bin │ ├── 080352A0.bin │ ├── 08035B4C.bin │ ├── 08037228.bin │ ├── 080416A8.bin │ ├── 0804FDD0.bin │ ├── 080536DC.bin │ ├── 08053DF8.bin │ ├── 08058358.bin │ ├── 0805AC80.bin │ ├── 0805F530.bin │ ├── 080611D4.bin │ ├── 08063AA4.bin │ ├── 08068A84.bin │ ├── 0806C4A0.bin │ ├── 0806E510.bin │ ├── 08071100.bin │ ├── 08075D6C.bin │ ├── 08076DE4.bin │ ├── 0807962C.bin │ ├── 0807A1A0.bin │ ├── 0807F398.bin │ ├── 08084590.bin │ ├── 08084F68.bin │ ├── 080855B8.bin │ ├── 08085CC0.bin │ ├── 08088D80.bin │ ├── 0808960C.bin │ ├── 0808987C.bin │ ├── 08094214.bin │ ├── 0809FDC8.bin │ ├── 080A30D4.bin │ ├── 080A3794.bin │ ├── 080A3F98.bin │ ├── 080A4858.bin │ ├── 080AA22C.bin │ ├── 080B0730.bin │ ├── 080B5928.bin │ ├── 080BAB20.bin │ ├── 080BF52C.bin │ ├── 080C4724.bin │ ├── 080C7498.bin │ ├── 080C77B8.bin │ ├── 080C7A9C.bin │ ├── 080CB030.bin │ ├── 080CE918.bin │ ├── 080D0968.bin │ ├── 080D2378.bin │ ├── 080D5768.bin │ ├── 080D8BE8.bin │ ├── 080DCFF8.bin │ ├── 080DF28C.bin │ ├── 080E1204.bin │ ├── 080E3CDC.bin │ ├── 080EA830.bin │ ├── 080EE6C4.bin │ ├── 080F01E4.bin │ ├── 080F0F44.bin │ ├── 080F36E8.bin │ ├── 080F4288.bin │ ├── 080F6F34.bin │ ├── 080FD0C8.bin │ ├── 08100A1C.bin │ ├── 08100C8C.bin │ ├── 08100EFC.bin │ ├── 0810116C.bin │ ├── 081013DC.bin │ ├── 0810164C.bin │ ├── 081018BC.bin │ ├── 08101B2C.bin │ ├── 08101D9C.bin │ ├── 0810200C.bin │ ├── 0810503C.bin │ ├── 0810CBD8.bin │ ├── 0810FB58.bin │ ├── 0810FDC8.bin │ ├── 08110808.bin │ ├── 08111228.bin │ └── 0811A444.bin └── programmable_wave_samples │ ├── 080411DC.pcm │ ├── 080411EC.pcm │ ├── 080411FC.pcm │ ├── 0804120C.pcm │ ├── 0804121C.pcm │ ├── 0804122C.pcm │ ├── 0804123C.pcm │ ├── 0804124C.pcm │ ├── 0804125C.pcm │ ├── 0804126C.pcm │ ├── 0804127C.pcm │ ├── 0804128C.pcm │ ├── 0804129C.pcm │ ├── 080412AC.pcm │ ├── 080412BC.pcm │ ├── 080412CC.pcm │ ├── 080412DC.pcm │ └── 080412EC.pcm ├── src ├── agb_sram.c ├── animation.c ├── bg.c ├── bg3.c ├── case_data.c ├── court.c ├── court_record.c ├── crt0.s ├── data │ └── background.h ├── episode_load_processes.c ├── gameover_process.c ├── investigation.c ├── investigation_segment_1_0.c ├── investigation_segment_1_2.c ├── investigation_segment_2_0.c ├── investigation_segment_2_2.c ├── investigation_segment_2_4.c ├── investigation_segment_3_0.c ├── investigation_segment_3_2.c ├── investigation_segment_3_4.c ├── libagbsyscall.s ├── m4a.c ├── m4a_1.s ├── m4a_tables.c ├── main.c ├── save_processes.c ├── script_commands.c ├── script_commands2.c ├── script_commands3.c ├── script_main.c ├── scripts.c ├── sound.c ├── title_processes.c └── utils.c ├── sym_ewram.txt ├── sym_iwram.txt └── tools ├── br_ips ├── .gitignore ├── Makefile ├── br_ips.c ├── global.h └── ips_patch.c ├── gbafix ├── .gitignore ├── COPYING ├── Makefile ├── elf.h └── gbafix.c ├── gbagfx ├── .gitignore ├── LICENSE ├── Makefile ├── convert_png.c ├── convert_png.h ├── font.c ├── font.h ├── gfx.c ├── gfx.h ├── global.h ├── huff.c ├── huff.h ├── jasc_pal.c ├── jasc_pal.h ├── lz.c ├── lz.h ├── main.c ├── options.h ├── rl.c ├── rl.h ├── util.c └── util.h ├── mid2agb ├── .gitignore ├── LICENSE ├── Makefile ├── agb.cpp ├── agb.h ├── error.cpp ├── error.h ├── main.cpp ├── main.h ├── midi.cpp ├── midi.h ├── tables.cpp └── tables.h ├── preproc ├── .gitignore ├── LICENSE ├── Makefile ├── asm_file.cpp ├── asm_file.h ├── c_file.cpp ├── c_file.h ├── char_util.h ├── preproc.cpp ├── preproc.h ├── string_parser.cpp ├── string_parser.h ├── utf8.cpp └── utf8.h └── scaninc ├── .gitignore ├── LICENSE ├── Makefile ├── asm_file.cpp ├── asm_file.h ├── c_file.cpp ├── c_file.h ├── scaninc.cpp ├── scaninc.h ├── source_file.cpp └── source_file.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/calcrom/calcrom.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/.github/calcrom/calcrom.pl -------------------------------------------------------------------------------- /.github/calcrom/webhook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/.github/calcrom/webhook.sh -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.old/calcrom/calcrom.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/.travis.old/calcrom/calcrom.pl -------------------------------------------------------------------------------- /.travis.old/calcrom/webhook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/.travis.old/calcrom/webhook.sh -------------------------------------------------------------------------------- /.travis.yml.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/.travis.yml.old -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/Makefile -------------------------------------------------------------------------------- /Notes about game.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/Notes about game.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/README.md -------------------------------------------------------------------------------- /asm/macros.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/asm/macros.inc -------------------------------------------------------------------------------- /asm/macros/function.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/asm/macros/function.inc -------------------------------------------------------------------------------- /asm/macros/m4a.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/asm/macros/m4a.inc -------------------------------------------------------------------------------- /asm/macros/music_voice.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/asm/macros/music_voice.inc -------------------------------------------------------------------------------- /asm/macros/scriptcmd.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/asm/macros/scriptcmd.inc -------------------------------------------------------------------------------- /asm/rom_header.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/asm/rom_header.inc -------------------------------------------------------------------------------- /asmdiff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/asmdiff.sh -------------------------------------------------------------------------------- /config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/config.mk -------------------------------------------------------------------------------- /constants/constants.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/constants/constants.inc -------------------------------------------------------------------------------- /constants/gba.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/constants/gba.inc -------------------------------------------------------------------------------- /constants/m4a.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/constants/m4a.inc -------------------------------------------------------------------------------- /data/graphics.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/data/graphics.s -------------------------------------------------------------------------------- /data/sound_data.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/data/sound_data.s -------------------------------------------------------------------------------- /data/sound_data2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/data/sound_data2.s -------------------------------------------------------------------------------- /graphics.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics.mk -------------------------------------------------------------------------------- /graphics/animations/animation01.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation01.seq -------------------------------------------------------------------------------- /graphics/animations/animation02.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation02.seq -------------------------------------------------------------------------------- /graphics/animations/animation03.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation03.seq -------------------------------------------------------------------------------- /graphics/animations/animation04.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation04.seq -------------------------------------------------------------------------------- /graphics/animations/animation05.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation05.seq -------------------------------------------------------------------------------- /graphics/animations/animation06.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation06.seq -------------------------------------------------------------------------------- /graphics/animations/animation07.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation07.seq -------------------------------------------------------------------------------- /graphics/animations/animation08.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation08.seq -------------------------------------------------------------------------------- /graphics/animations/animation09.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation09.seq -------------------------------------------------------------------------------- /graphics/animations/animation10.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation10.seq -------------------------------------------------------------------------------- /graphics/animations/animation11.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation11.seq -------------------------------------------------------------------------------- /graphics/animations/animation12.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation12.seq -------------------------------------------------------------------------------- /graphics/animations/animation13.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation13.seq -------------------------------------------------------------------------------- /graphics/animations/animation14.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation14.seq -------------------------------------------------------------------------------- /graphics/animations/animation15.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation15.seq -------------------------------------------------------------------------------- /graphics/animations/animation16.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation16.seq -------------------------------------------------------------------------------- /graphics/animations/animation17.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation17.seq -------------------------------------------------------------------------------- /graphics/animations/animation18.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation18.seq -------------------------------------------------------------------------------- /graphics/animations/animation19.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation19.seq -------------------------------------------------------------------------------- /graphics/animations/animation20.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation20.seq -------------------------------------------------------------------------------- /graphics/animations/animation21.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation21.seq -------------------------------------------------------------------------------- /graphics/animations/animation22.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation22.seq -------------------------------------------------------------------------------- /graphics/animations/animation23.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation23.seq -------------------------------------------------------------------------------- /graphics/animations/animation24.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation24.seq -------------------------------------------------------------------------------- /graphics/animations/animation25.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation25.seq -------------------------------------------------------------------------------- /graphics/animations/animation26.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation26.seq -------------------------------------------------------------------------------- /graphics/animations/animation27.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation27.seq -------------------------------------------------------------------------------- /graphics/animations/animation28.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation28.seq -------------------------------------------------------------------------------- /graphics/animations/animation29.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation29.seq -------------------------------------------------------------------------------- /graphics/animations/animation30.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation30.seq -------------------------------------------------------------------------------- /graphics/animations/animation31.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation31.seq -------------------------------------------------------------------------------- /graphics/animations/animation32.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation32.seq -------------------------------------------------------------------------------- /graphics/animations/animation33.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation33.seq -------------------------------------------------------------------------------- /graphics/animations/animation34.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation34.seq -------------------------------------------------------------------------------- /graphics/animations/animation35.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation35.seq -------------------------------------------------------------------------------- /graphics/animations/animation36.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation36.seq -------------------------------------------------------------------------------- /graphics/animations/animation37.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation37.seq -------------------------------------------------------------------------------- /graphics/animations/animation38.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation38.seq -------------------------------------------------------------------------------- /graphics/animations/animation39.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation39.seq -------------------------------------------------------------------------------- /graphics/animations/animation40.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation40.seq -------------------------------------------------------------------------------- /graphics/animations/animation41.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation41.seq -------------------------------------------------------------------------------- /graphics/animations/animation42.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation42.seq -------------------------------------------------------------------------------- /graphics/animations/animation43.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation43.seq -------------------------------------------------------------------------------- /graphics/animations/animation44.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation44.seq -------------------------------------------------------------------------------- /graphics/animations/animation45.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation45.seq -------------------------------------------------------------------------------- /graphics/animations/animation46.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation46.seq -------------------------------------------------------------------------------- /graphics/animations/animation47.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation47.seq -------------------------------------------------------------------------------- /graphics/animations/animation48.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation48.seq -------------------------------------------------------------------------------- /graphics/animations/animation49.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation49.seq -------------------------------------------------------------------------------- /graphics/animations/animation50.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation50.seq -------------------------------------------------------------------------------- /graphics/animations/animation51.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation51.seq -------------------------------------------------------------------------------- /graphics/animations/animation52.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation52.seq -------------------------------------------------------------------------------- /graphics/animations/animation53.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation53.seq -------------------------------------------------------------------------------- /graphics/animations/animation54.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/animation54.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation01.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation01.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation01.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation01.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation02.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation02.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation02.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation02.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation03.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation03.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation03.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation03.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation04.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation04.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation04.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation04.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation05.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation05.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation05.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation05.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation06.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation06.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation06.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation06.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation07.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation07.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation07.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation07.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation08.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation08.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation08.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation08.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation09.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation09.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation09.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation09.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation10.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation10.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation10.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation10.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation11.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation11.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation11.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation11.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation12.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation12.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation12.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation12.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation13.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation13.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation13.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation13.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation14.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation14.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation14.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation14.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation15.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation15.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation15.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation15.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation16.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation16.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation16.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation16.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation17.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation17.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation17.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation17.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation18.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation18.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation18.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation18.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation19.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation19.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation19.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation19.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation20.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation20.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation20.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation20.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation21.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation21.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation21.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation21.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation22.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation22.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation22.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation22.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation23.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation23.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation23.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation23.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation24.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation24.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation24.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation24.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation25.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation25.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation25.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation25.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation26.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation26.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation26.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/characters/animation26.seq -------------------------------------------------------------------------------- /graphics/animations/tileset01.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/tileset01.pix -------------------------------------------------------------------------------- /graphics/animations/tileset02.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/animations/tileset02.pix -------------------------------------------------------------------------------- /graphics/bustup_edgeworth.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/bustup_edgeworth.bin -------------------------------------------------------------------------------- /graphics/bustup_edgeworth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/bustup_edgeworth.png -------------------------------------------------------------------------------- /graphics/bustup_phoenix.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/bustup_phoenix.bin -------------------------------------------------------------------------------- /graphics/bustup_phoenix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/bustup_phoenix.png -------------------------------------------------------------------------------- /graphics/charset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/charset.png -------------------------------------------------------------------------------- /graphics/choice_greyed_out.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/choice_greyed_out.pal -------------------------------------------------------------------------------- /graphics/choice_selected.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/choice_selected.pal -------------------------------------------------------------------------------- /graphics/common2.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/common2.pal -------------------------------------------------------------------------------- /graphics/court_scrolls/court_scroll01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/court_scrolls/court_scroll01.png -------------------------------------------------------------------------------- /graphics/court_scrolls/court_scroll02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/court_scrolls/court_scroll02.png -------------------------------------------------------------------------------- /graphics/court_scrolls/court_scroll03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/court_scrolls/court_scroll03.png -------------------------------------------------------------------------------- /graphics/court_scrolls/court_scroll04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/court_scrolls/court_scroll04.png -------------------------------------------------------------------------------- /graphics/court_scrolls/court_scroll05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/court_scrolls/court_scroll05.png -------------------------------------------------------------------------------- /graphics/court_scrolls/court_scroll06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/court_scrolls/court_scroll06.png -------------------------------------------------------------------------------- /graphics/court_scrolls/court_scroll07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/court_scrolls/court_scroll07.png -------------------------------------------------------------------------------- /graphics/court_scrolls/court_scroll08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/court_scrolls/court_scroll08.png -------------------------------------------------------------------------------- /graphics/court_scrolls/court_scroll09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/court_scrolls/court_scroll09.png -------------------------------------------------------------------------------- /graphics/court_scrolls/court_scroll10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/court_scrolls/court_scroll10.png -------------------------------------------------------------------------------- /graphics/court_scrolls/court_scroll11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/court_scrolls/court_scroll11.png -------------------------------------------------------------------------------- /graphics/court_scrolls/court_scroll12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/court_scrolls/court_scroll12.png -------------------------------------------------------------------------------- /graphics/court_scrolls/court_scroll13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/court_scrolls/court_scroll13.png -------------------------------------------------------------------------------- /graphics/court_scrolls/court_scroll14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/court_scrolls/court_scroll14.png -------------------------------------------------------------------------------- /graphics/court_scrolls/court_scroll15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/court_scrolls/court_scroll15.png -------------------------------------------------------------------------------- /graphics/court_scrolls/court_scroll16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/court_scrolls/court_scroll16.png -------------------------------------------------------------------------------- /graphics/court_scrolls/court_scroll17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/court_scrolls/court_scroll17.png -------------------------------------------------------------------------------- /graphics/court_scrolls/court_scroll18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/court_scrolls/court_scroll18.png -------------------------------------------------------------------------------- /graphics/court_scrolls/court_scroll19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/court_scrolls/court_scroll19.png -------------------------------------------------------------------------------- /graphics/court_scrolls/court_scroll20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/court_scrolls/court_scroll20.png -------------------------------------------------------------------------------- /graphics/court_scrolls/court_scroll21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/court_scrolls/court_scroll21.png -------------------------------------------------------------------------------- /graphics/court_scrolls/court_scroll22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/court_scrolls/court_scroll22.png -------------------------------------------------------------------------------- /graphics/court_scrolls/court_scroll23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/court_scrolls/court_scroll23.png -------------------------------------------------------------------------------- /graphics/court_scrolls/court_scroll24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/court_scrolls/court_scroll24.png -------------------------------------------------------------------------------- /graphics/court_scrolls/court_scroll25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/court_scrolls/court_scroll25.png -------------------------------------------------------------------------------- /graphics/court_scrolls/court_scroll26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/court_scrolls/court_scroll26.png -------------------------------------------------------------------------------- /graphics/court_scrolls/court_scroll27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/court_scrolls/court_scroll27.png -------------------------------------------------------------------------------- /graphics/court_scrolls/court_scroll28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/court_scrolls/court_scroll28.png -------------------------------------------------------------------------------- /graphics/court_scrolls/court_scroll29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/court_scrolls/court_scroll29.png -------------------------------------------------------------------------------- /graphics/court_scrolls/court_scroll30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/court_scrolls/court_scroll30.png -------------------------------------------------------------------------------- /graphics/court_scrolls/court_scroll31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/court_scrolls/court_scroll31.png -------------------------------------------------------------------------------- /graphics/court_scrolls/court_scroll32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/court_scrolls/court_scroll32.png -------------------------------------------------------------------------------- /graphics/court_scrolls/court_scroll33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/court_scrolls/court_scroll33.png -------------------------------------------------------------------------------- /graphics/court_scrolls/court_scroll34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/court_scrolls/court_scroll34.png -------------------------------------------------------------------------------- /graphics/court_scrolls/court_scroll35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/court_scrolls/court_scroll35.png -------------------------------------------------------------------------------- /graphics/court_scrolls/court_scroll36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/court_scrolls/court_scroll36.png -------------------------------------------------------------------------------- /graphics/court_scrolls/court_scroll37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/court_scrolls/court_scroll37.png -------------------------------------------------------------------------------- /graphics/court_scrolls/court_scroll38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/court_scrolls/court_scroll38.png -------------------------------------------------------------------------------- /graphics/court_scrolls/court_scroll39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/court_scrolls/court_scroll39.png -------------------------------------------------------------------------------- /graphics/court_scrolls/court_scroll40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/court_scrolls/court_scroll40.png -------------------------------------------------------------------------------- /graphics/court_scrolls/court_scroll41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/court_scrolls/court_scroll41.png -------------------------------------------------------------------------------- /graphics/court_scrolls/court_scroll42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/court_scrolls/court_scroll42.png -------------------------------------------------------------------------------- /graphics/court_scrolls/court_scroll43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/court_scrolls/court_scroll43.png -------------------------------------------------------------------------------- /graphics/court_scrolls/court_scroll44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/court_scrolls/court_scroll44.png -------------------------------------------------------------------------------- /graphics/court_scrolls/court_scroll45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/court_scrolls/court_scroll45.png -------------------------------------------------------------------------------- /graphics/court_scrolls/court_scroll46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/court_scrolls/court_scroll46.png -------------------------------------------------------------------------------- /graphics/court_scrolls/court_scroll47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/court_scrolls/court_scroll47.png -------------------------------------------------------------------------------- /graphics/court_scrolls/court_scroll48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/court_scrolls/court_scroll48.png -------------------------------------------------------------------------------- /graphics/episode_select_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/episode_select_options.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/evidence/air_tube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/evidence/air_tube.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/evidence/article_gourdy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/evidence/article_gourdy.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/evidence/bullet_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/evidence/bullet_0.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/evidence/bullet_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/evidence/bullet_1.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/evidence/dl-6_bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/evidence/dl-6_bullet.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/evidence/empty_bottle_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/evidence/empty_bottle_0.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/evidence/empty_bottle_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/evidence/empty_bottle_1.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/evidence/empty_plate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/evidence/empty_plate.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/evidence/firecrackers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/evidence/firecrackers.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/evidence/fishing_pole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/evidence/fishing_pole.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/evidence/generic_photo_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/evidence/generic_photo_0.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/evidence/generic_photo_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/evidence/generic_photo_1.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/evidence/glass_shards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/evidence/glass_shards.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/evidence/maya_memo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/evidence/maya_memo.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/evidence/missile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/evidence/missile.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/evidence/mr_monkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/evidence/mr_monkey.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/evidence/pistol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/evidence/pistol.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/evidence/polly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/evidence/polly.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/evidence/wiretap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/evidence/wiretap.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/evidence/yannis_safe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/evidence/yannis_safe.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/profiles/april_may_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/profiles/april_may_0.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/profiles/april_may_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/profiles/april_may_1.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/profiles/april_may_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/profiles/april_may_2.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/profiles/bellboy_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/profiles/bellboy_0.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/profiles/bellboy_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/profiles/bellboy_1.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/profiles/cindy_stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/profiles/cindy_stone.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/profiles/cody_hackins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/profiles/cody_hackins.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/profiles/dee_vasquez.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/profiles/dee_vasquez.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/profiles/dick_gumshoe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/profiles/dick_gumshoe.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/profiles/frank_sahwit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/profiles/frank_sahwit.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/profiles/jack_hammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/profiles/jack_hammer.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/profiles/larry_butz_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/profiles/larry_butz_0.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/profiles/larry_butz_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/profiles/larry_butz_1.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/profiles/lotta_hart_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/profiles/lotta_hart_0.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/profiles/lotta_hart_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/profiles/lotta_hart_1.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/profiles/maya_fey_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/profiles/maya_fey_0.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/profiles/maya_fey_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/profiles/maya_fey_1.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/profiles/maya_fey_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/profiles/maya_fey_2.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/profiles/maya_fey_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/profiles/maya_fey_3.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/profiles/mia_fey_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/profiles/mia_fey_0.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/profiles/mia_fey_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/profiles/mia_fey_1.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/profiles/misty_fey_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/profiles/misty_fey_0.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/profiles/misty_fey_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/profiles/misty_fey_1.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/profiles/misty_fey_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/profiles/misty_fey_2.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/profiles/old_man_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/profiles/old_man_0.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/profiles/old_man_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/profiles/old_man_1.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/profiles/redd_white_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/profiles/redd_white_0.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/profiles/redd_white_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/profiles/redd_white_1.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/profiles/sal_manella.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/profiles/sal_manella.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/profiles/wendy_oldbag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/profiles/wendy_oldbag.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/profiles/will_powers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_descriptions/profiles/will_powers.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/evidence/air_tube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_pictures/evidence/air_tube.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/evidence/article_gourdy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_pictures/evidence/article_gourdy.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/evidence/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_pictures/evidence/bullet.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/evidence/dl-6_bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_pictures/evidence/dl-6_bullet.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/evidence/empty_bottle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_pictures/evidence/empty_bottle.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/evidence/empty_plate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_pictures/evidence/empty_plate.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/evidence/firecrackers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_pictures/evidence/firecrackers.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/evidence/fishing_pole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_pictures/evidence/fishing_pole.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/evidence/generic_letter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_pictures/evidence/generic_letter.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/evidence/generic_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_pictures/evidence/generic_photo.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/evidence/glass_shards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_pictures/evidence/glass_shards.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/evidence/key_to_cottage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_pictures/evidence/key_to_cottage.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/evidence/lottas_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_pictures/evidence/lottas_camera.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/evidence/maya_memo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_pictures/evidence/maya_memo.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/evidence/mayas_cellphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_pictures/evidence/mayas_cellphone.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/evidence/metal_detector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_pictures/evidence/metal_detector.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/evidence/missile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_pictures/evidence/missile.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/evidence/missile_angry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_pictures/evidence/missile_angry.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/evidence/mr_monkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_pictures/evidence/mr_monkey.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/evidence/phoenix_badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_pictures/evidence/phoenix_badge.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/evidence/pistol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_pictures/evidence/pistol.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/evidence/polly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_pictures/evidence/polly.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/evidence/the_thinker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_pictures/evidence/the_thinker.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/evidence/wiretap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_pictures/evidence/wiretap.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/evidence/yannis_safe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_pictures/evidence/yannis_safe.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/profiles/april_may.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_pictures/profiles/april_may.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/profiles/bellboy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_pictures/profiles/bellboy.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/profiles/cindy_stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_pictures/profiles/cindy_stone.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/profiles/cody_hackins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_pictures/profiles/cody_hackins.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/profiles/dee_vasquez.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_pictures/profiles/dee_vasquez.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/profiles/dick_gumshoe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_pictures/profiles/dick_gumshoe.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/profiles/frank_sahwit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_pictures/profiles/frank_sahwit.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/profiles/jack_hammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_pictures/profiles/jack_hammer.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/profiles/larry_butz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_pictures/profiles/larry_butz.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/profiles/lotta_hart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_pictures/profiles/lotta_hart.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/profiles/marvin_grossberg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_pictures/profiles/marvin_grossberg.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/profiles/maya_fey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_pictures/profiles/maya_fey.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/profiles/mia_fey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_pictures/profiles/mia_fey.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/profiles/miles_edgeworth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_pictures/profiles/miles_edgeworth.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/profiles/misty_fey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_pictures/profiles/misty_fey.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/profiles/old_man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_pictures/profiles/old_man.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/profiles/penny_nichols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_pictures/profiles/penny_nichols.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/profiles/redd_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_pictures/profiles/redd_white.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/profiles/robert_hammond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_pictures/profiles/robert_hammond.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/profiles/sal_manella.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_pictures/profiles/sal_manella.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/profiles/wendy_oldbag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_pictures/profiles/wendy_oldbag.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/profiles/will_powers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_pictures/profiles/will_powers.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/profiles/winston_payne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/evidence_profile_pictures/profiles/winston_payne.png -------------------------------------------------------------------------------- /graphics/from_save_or_beginning_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/from_save_or_beginning_options.png -------------------------------------------------------------------------------- /graphics/location_choices/001FD96C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/location_choices/001FD96C.png -------------------------------------------------------------------------------- /graphics/location_choices/001FE16C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/location_choices/001FE16C.png -------------------------------------------------------------------------------- /graphics/location_choices/001FE96C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/location_choices/001FE96C.png -------------------------------------------------------------------------------- /graphics/location_choices/001FF16C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/location_choices/001FF16C.png -------------------------------------------------------------------------------- /graphics/location_choices/001FF96C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/location_choices/001FF96C.png -------------------------------------------------------------------------------- /graphics/location_choices/0020016C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/location_choices/0020016C.png -------------------------------------------------------------------------------- /graphics/location_choices/0020096C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/location_choices/0020096C.png -------------------------------------------------------------------------------- /graphics/location_choices/0020116C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/location_choices/0020116C.png -------------------------------------------------------------------------------- /graphics/location_choices/0020196C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/location_choices/0020196C.png -------------------------------------------------------------------------------- /graphics/location_choices/0020216C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/location_choices/0020216C.png -------------------------------------------------------------------------------- /graphics/location_choices/0020296C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/location_choices/0020296C.png -------------------------------------------------------------------------------- /graphics/location_choices/0020316C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/location_choices/0020316C.png -------------------------------------------------------------------------------- /graphics/location_choices/0020396C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/location_choices/0020396C.png -------------------------------------------------------------------------------- /graphics/location_choices/0020416C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/location_choices/0020416C.png -------------------------------------------------------------------------------- /graphics/location_choices/0020496C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/location_choices/0020496C.png -------------------------------------------------------------------------------- /graphics/location_choices/0020516C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/location_choices/0020516C.png -------------------------------------------------------------------------------- /graphics/location_choices/0020596C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/location_choices/0020596C.png -------------------------------------------------------------------------------- /graphics/location_choices/0020616C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/location_choices/0020616C.png -------------------------------------------------------------------------------- /graphics/location_choices/0020696C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/location_choices/0020696C.png -------------------------------------------------------------------------------- /graphics/location_choices/0020716C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/location_choices/0020716C.png -------------------------------------------------------------------------------- /graphics/location_choices/0020796C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/location_choices/0020796C.png -------------------------------------------------------------------------------- /graphics/map_markers/case2_mia_body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/map_markers/case2_mia_body.png -------------------------------------------------------------------------------- /graphics/map_markers/case2_thinker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/map_markers/case2_thinker.png -------------------------------------------------------------------------------- /graphics/map_markers/case3_employee_area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/map_markers/case3_employee_area.png -------------------------------------------------------------------------------- /graphics/map_markers/case3_gate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/map_markers/case3_gate.png -------------------------------------------------------------------------------- /graphics/map_markers/case3_main_gate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/map_markers/case3_main_gate.png -------------------------------------------------------------------------------- /graphics/map_markers/case3_studio_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/map_markers/case3_studio_1.png -------------------------------------------------------------------------------- /graphics/map_markers/case3_studio_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/map_markers/case3_studio_2.png -------------------------------------------------------------------------------- /graphics/map_markers/case4_boat_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/map_markers/case4_boat_horizontal.png -------------------------------------------------------------------------------- /graphics/map_markers/case4_boat_rental_shop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/map_markers/case4_boat_rental_shop.png -------------------------------------------------------------------------------- /graphics/map_markers/case4_boat_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/map_markers/case4_boat_vertical.png -------------------------------------------------------------------------------- /graphics/map_markers/case4_lotta_suv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/map_markers/case4_lotta_suv.png -------------------------------------------------------------------------------- /graphics/map_markers/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/map_markers/green.png -------------------------------------------------------------------------------- /graphics/map_markers/killer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/map_markers/killer.png -------------------------------------------------------------------------------- /graphics/map_markers/palette.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/map_markers/palette.pal -------------------------------------------------------------------------------- /graphics/map_markers/victim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/map_markers/victim.png -------------------------------------------------------------------------------- /graphics/save_yes_no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/save_yes_no.png -------------------------------------------------------------------------------- /graphics/speedlines_first_and_last_columns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/speedlines_first_and_last_columns.png -------------------------------------------------------------------------------- /graphics/striped_images/backgrounds/bluecorp_ceo_office.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/backgrounds/bluecorp_ceo_office.png -------------------------------------------------------------------------------- /graphics/striped_images/backgrounds/court/co_counsel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/backgrounds/court/co_counsel.png -------------------------------------------------------------------------------- /graphics/striped_images/backgrounds/court/court_room.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/backgrounds/court/court_room.png -------------------------------------------------------------------------------- /graphics/striped_images/backgrounds/court/defendant_lobby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/backgrounds/court/defendant_lobby.png -------------------------------------------------------------------------------- /graphics/striped_images/backgrounds/court/defense_bench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/backgrounds/court/defense_bench.png -------------------------------------------------------------------------------- /graphics/striped_images/backgrounds/court/judge_seat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/backgrounds/court/judge_seat.png -------------------------------------------------------------------------------- /graphics/striped_images/backgrounds/court/prosecution_bench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/backgrounds/court/prosecution_bench.png -------------------------------------------------------------------------------- /graphics/striped_images/backgrounds/court/witness_stand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/backgrounds/court/witness_stand.png -------------------------------------------------------------------------------- /graphics/striped_images/backgrounds/detention_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/backgrounds/detention_center.png -------------------------------------------------------------------------------- /graphics/striped_images/backgrounds/evidence/fey_co_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/backgrounds/evidence/fey_co_diagram.png -------------------------------------------------------------------------------- /graphics/striped_images/backgrounds/gatewater_hotelroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/backgrounds/gatewater_hotelroom.png -------------------------------------------------------------------------------- /graphics/striped_images/backgrounds/gavel/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/backgrounds/gavel/1.png -------------------------------------------------------------------------------- /graphics/striped_images/backgrounds/gavel/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/backgrounds/gavel/2.png -------------------------------------------------------------------------------- /graphics/striped_images/backgrounds/gavel/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/backgrounds/gavel/3.png -------------------------------------------------------------------------------- /graphics/striped_images/backgrounds/global_studios/studio_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/backgrounds/global_studios/studio_1.png -------------------------------------------------------------------------------- /graphics/striped_images/backgrounds/global_studios/studio_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/backgrounds/global_studios/studio_2.png -------------------------------------------------------------------------------- /graphics/striped_images/capcom_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/capcom_screen.png -------------------------------------------------------------------------------- /graphics/striped_images/capcom_screen_bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/capcom_screen_bw.png -------------------------------------------------------------------------------- /graphics/striped_images/case3_intro_faceoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/case3_intro_faceoff.png -------------------------------------------------------------------------------- /graphics/striped_images/case3_intro_grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/case3_intro_grass.png -------------------------------------------------------------------------------- /graphics/striped_images/case3_intro_steel_samurai_posing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/case3_intro_steel_samurai_posing.png -------------------------------------------------------------------------------- /graphics/striped_images/case3_intro_trees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/case3_intro_trees.png -------------------------------------------------------------------------------- /graphics/striped_images/case4_balloon_landing_in_lake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/case4_balloon_landing_in_lake.png -------------------------------------------------------------------------------- /graphics/striped_images/case4_balloon_launching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/case4_balloon_launching.png -------------------------------------------------------------------------------- /graphics/striped_images/case4_class_trial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/case4_class_trial.png -------------------------------------------------------------------------------- /graphics/striped_images/case4_class_trial_edgeworth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/case4_class_trial_edgeworth.png -------------------------------------------------------------------------------- /graphics/striped_images/case4_class_trial_larry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/case4_class_trial_larry.png -------------------------------------------------------------------------------- /graphics/striped_images/case4_class_trial_phoenix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/case4_class_trial_phoenix.png -------------------------------------------------------------------------------- /graphics/striped_images/case4_elevator_edgeworth_throw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/case4_elevator_edgeworth_throw.png -------------------------------------------------------------------------------- /graphics/striped_images/case4_elevator_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/case4_elevator_photo.png -------------------------------------------------------------------------------- /graphics/striped_images/case4_elevator_suffocating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/case4_elevator_suffocating.png -------------------------------------------------------------------------------- /graphics/striped_images/case4_elevator_vonkarma_in_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/case4_elevator_vonkarma_in_door.png -------------------------------------------------------------------------------- /graphics/striped_images/case4_elevator_vonkarma_shot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/case4_elevator_vonkarma_shot.png -------------------------------------------------------------------------------- /graphics/striped_images/case4_gourd_lake_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/case4_gourd_lake_map.png -------------------------------------------------------------------------------- /graphics/striped_images/case4_intro_edgeworth_picks_gun_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/case4_intro_edgeworth_picks_gun_up.png -------------------------------------------------------------------------------- /graphics/striped_images/case4_intro_lake_one_in_boat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/case4_intro_lake_one_in_boat.png -------------------------------------------------------------------------------- /graphics/striped_images/case4_intro_threatened_to_shoot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/case4_intro_threatened_to_shoot.png -------------------------------------------------------------------------------- /graphics/striped_images/case4_larry_searching_lake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/case4_larry_searching_lake.png -------------------------------------------------------------------------------- /graphics/striped_images/case4_lottas_photo_far.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/case4_lottas_photo_far.png -------------------------------------------------------------------------------- /graphics/striped_images/case4_lottas_photo_zoomed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/case4_lottas_photo_zoomed.png -------------------------------------------------------------------------------- /graphics/striped_images/case4_newspaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/case4_newspaper.png -------------------------------------------------------------------------------- /graphics/striped_images/case4_shoot_water_from_boat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/case4_shoot_water_from_boat.png -------------------------------------------------------------------------------- /graphics/striped_images/case4_train_station.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/case4_train_station.png -------------------------------------------------------------------------------- /graphics/striped_images/case4_train_station_maya_leaving.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/case4_train_station_maya_leaving.png -------------------------------------------------------------------------------- /graphics/striped_images/case4_yanni_threatening.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/case4_yanni_threatening.png -------------------------------------------------------------------------------- /graphics/striped_images/coming_soon_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/coming_soon_screen.png -------------------------------------------------------------------------------- /graphics/striped_images/courtroom_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/courtroom_background.png -------------------------------------------------------------------------------- /graphics/striped_images/gourd_lake_beach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/gourd_lake_beach.png -------------------------------------------------------------------------------- /graphics/striped_images/gourd_lake_boat_rental.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/gourd_lake_boat_rental.png -------------------------------------------------------------------------------- /graphics/striped_images/gourd_lake_boat_rental_house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/gourd_lake_boat_rental_house.png -------------------------------------------------------------------------------- /graphics/striped_images/gourd_lake_entrance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/gourd_lake_entrance.png -------------------------------------------------------------------------------- /graphics/striped_images/gourd_lake_park.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/gourd_lake_park.png -------------------------------------------------------------------------------- /graphics/striped_images/gourd_lake_park_no_balloon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/gourd_lake_park_no_balloon.png -------------------------------------------------------------------------------- /graphics/striped_images/police_station_evidence_storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/police_station_evidence_storage.png -------------------------------------------------------------------------------- /graphics/striped_images/police_station_lobby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/police_station_lobby.png -------------------------------------------------------------------------------- /graphics/striped_images/speedlines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/speedlines.png -------------------------------------------------------------------------------- /graphics/striped_images/steel_samurai_night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/steel_samurai_night.png -------------------------------------------------------------------------------- /graphics/striped_images/title_screen_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/title_screen_demo.png -------------------------------------------------------------------------------- /graphics/striped_images/trial_won.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/striped_images/trial_won.png -------------------------------------------------------------------------------- /graphics/talk_choices/0020816C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0020816C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0020896C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0020896C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0020916C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0020916C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0020996C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0020996C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0020A16C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0020A16C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0020A96C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0020A96C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0020B16C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0020B16C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0020B96C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0020B96C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0020C16C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0020C16C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0020C96C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0020C96C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0020D16C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0020D16C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0020D96C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0020D96C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0020E16C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0020E16C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0020E96C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0020E96C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0020F16C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0020F16C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0020F96C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0020F96C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0021016C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0021016C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0021096C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0021096C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0021116C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0021116C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0021196C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0021196C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0021216C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0021216C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0021296C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0021296C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0021316C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0021316C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0021396C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0021396C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0021416C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0021416C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0021496C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0021496C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0021516C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0021516C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0021596C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0021596C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0021616C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0021616C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0021696C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0021696C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0021716C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0021716C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0021796C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0021796C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0021816C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0021816C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0021896C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0021896C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0021916C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0021916C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0021996C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0021996C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0021A16C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0021A16C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0021A96C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0021A96C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0021B16C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0021B16C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0021B96C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0021B96C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0021C16C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0021C16C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0021C96C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0021C96C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0021D16C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0021D16C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0021D96C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0021D96C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0021E16C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0021E16C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0021E96C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0021E96C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0021F16C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0021F16C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0021F96C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0021F96C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0022016C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0022016C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0022096C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0022096C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0022116C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0022116C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0022196C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0022196C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0022216C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0022216C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0022296C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0022296C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0022316C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0022316C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0022396C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0022396C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0022416C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0022416C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0022496C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0022496C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0022516C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0022516C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0022596C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0022596C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0022616C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0022616C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0022696C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0022696C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0022716C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0022716C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0022796C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0022796C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0022816C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0022816C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0022896C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0022896C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0022916C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0022916C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0022996C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0022996C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0022A16C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0022A16C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0022A96C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0022A96C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0022B16C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0022B16C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0022B96C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0022B96C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0022C16C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0022C16C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0022C96C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0022C96C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0022D16C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0022D16C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0022D96C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0022D96C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0022E16C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0022E16C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0022E96C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0022E96C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0022F16C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0022F16C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0022F96C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0022F96C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0023016C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0023016C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0023096C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0023096C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0023116C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0023116C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0023196C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0023196C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0023216C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0023216C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0023296C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0023296C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0023316C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0023316C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0023396C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0023396C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0023416C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0023416C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0023496C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0023496C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0023516C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0023516C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0023596C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0023596C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0023616C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0023616C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0023696C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0023696C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0023716C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0023716C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0023796C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0023796C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0023816C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0023816C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0023896C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0023896C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0023916C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0023916C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0023996C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0023996C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0023A16C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0023A16C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0023A96C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0023A96C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0023B16C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0023B16C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0023B96C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0023B96C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0023C16C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0023C16C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0023C96C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0023C96C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0023D16C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0023D16C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0023D96C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0023D96C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0023E16C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0023E16C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0023E96C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0023E96C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0023F16C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0023F16C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0023F96C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0023F96C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0024016C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0024016C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0024096C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0024096C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0024116C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0024116C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0024196C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0024196C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0024216C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0024216C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0024296C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0024296C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0024316C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0024316C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0024396C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0024396C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0024416C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0024416C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0024496C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0024496C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0024516C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0024516C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0024596C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0024596C.png -------------------------------------------------------------------------------- /graphics/talk_choices/0024616C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/talk_choices/0024616C.png -------------------------------------------------------------------------------- /graphics/title_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/title_screen.png -------------------------------------------------------------------------------- /graphics/title_screen_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/title_screen_demo.png -------------------------------------------------------------------------------- /graphics/ui/court_record/controller_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/court_record/controller_buttons.png -------------------------------------------------------------------------------- /graphics/ui/court_record/controls_blurb.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/court_record/controls_blurb.pal -------------------------------------------------------------------------------- /graphics/ui/court_record/evidence_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/court_record/evidence_text.png -------------------------------------------------------------------------------- /graphics/ui/court_record/present_back_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/court_record/present_back_text.png -------------------------------------------------------------------------------- /graphics/ui/court_record/profiles_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/court_record/profiles_text.png -------------------------------------------------------------------------------- /graphics/ui/cross_examination_ui.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/cross_examination_ui.pal -------------------------------------------------------------------------------- /graphics/ui/investigation/action_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/investigation/action_buttons.png -------------------------------------------------------------------------------- /graphics/ui/investigation/action_buttons_0.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/investigation/action_buttons_0.pal -------------------------------------------------------------------------------- /graphics/ui/investigation/action_buttons_1.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/investigation/action_buttons_1.pal -------------------------------------------------------------------------------- /graphics/ui/investigation/checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/investigation/checkmark.png -------------------------------------------------------------------------------- /graphics/ui/investigation/examine_cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/investigation/examine_cursor.png -------------------------------------------------------------------------------- /graphics/ui/investigation/examine_cursor_00.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/investigation/examine_cursor_00.pal -------------------------------------------------------------------------------- /graphics/ui/investigation/examine_cursor_01.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/investigation/examine_cursor_01.pal -------------------------------------------------------------------------------- /graphics/ui/investigation/examine_cursor_02.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/investigation/examine_cursor_02.pal -------------------------------------------------------------------------------- /graphics/ui/investigation/examine_cursor_03.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/investigation/examine_cursor_03.pal -------------------------------------------------------------------------------- /graphics/ui/investigation/examine_cursor_04.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/investigation/examine_cursor_04.pal -------------------------------------------------------------------------------- /graphics/ui/investigation/examine_cursor_05.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/investigation/examine_cursor_05.pal -------------------------------------------------------------------------------- /graphics/ui/investigation/examine_cursor_06.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/investigation/examine_cursor_06.pal -------------------------------------------------------------------------------- /graphics/ui/investigation/examine_cursor_07.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/investigation/examine_cursor_07.pal -------------------------------------------------------------------------------- /graphics/ui/investigation/examine_cursor_08.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/investigation/examine_cursor_08.pal -------------------------------------------------------------------------------- /graphics/ui/investigation/examine_cursor_09.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/investigation/examine_cursor_09.pal -------------------------------------------------------------------------------- /graphics/ui/investigation/examine_cursor_10.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/investigation/examine_cursor_10.pal -------------------------------------------------------------------------------- /graphics/ui/investigation/examine_cursor_11.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/investigation/examine_cursor_11.pal -------------------------------------------------------------------------------- /graphics/ui/investigation/examine_cursor_12.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/investigation/examine_cursor_12.pal -------------------------------------------------------------------------------- /graphics/ui/investigation/examine_cursor_13.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/investigation/examine_cursor_13.pal -------------------------------------------------------------------------------- /graphics/ui/investigation/examine_cursor_14.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/investigation/examine_cursor_14.pal -------------------------------------------------------------------------------- /graphics/ui/investigation/examine_cursor_15.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/investigation/examine_cursor_15.pal -------------------------------------------------------------------------------- /graphics/ui/investigation/examine_cursor_16.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/investigation/examine_cursor_16.pal -------------------------------------------------------------------------------- /graphics/ui/investigation/scroll_prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/investigation/scroll_prompt.png -------------------------------------------------------------------------------- /graphics/ui/left_right_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/left_right_arrows.png -------------------------------------------------------------------------------- /graphics/ui/message_box/nametags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/message_box/nametags.png -------------------------------------------------------------------------------- /graphics/ui/message_box/save_game_tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/message_box/save_game_tiles.png -------------------------------------------------------------------------------- /graphics/ui/message_box/unk_013B70.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/message_box/unk_013B70.bin -------------------------------------------------------------------------------- /graphics/ui/new_game_continue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/new_game_continue.png -------------------------------------------------------------------------------- /graphics/ui/new_game_continue_0.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/new_game_continue_0.pal -------------------------------------------------------------------------------- /graphics/ui/new_game_continue_1.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/new_game_continue_1.pal -------------------------------------------------------------------------------- /graphics/ui/new_game_continue_2.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/new_game_continue_2.pal -------------------------------------------------------------------------------- /graphics/ui/new_game_continue_3.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/new_game_continue_3.pal -------------------------------------------------------------------------------- /graphics/ui/new_game_continue_4.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/new_game_continue_4.pal -------------------------------------------------------------------------------- /graphics/ui/new_game_continue_5.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/new_game_continue_5.pal -------------------------------------------------------------------------------- /graphics/ui/trial/confetti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/trial/confetti.png -------------------------------------------------------------------------------- /graphics/ui/trial/confetti_0.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/trial/confetti_0.pal -------------------------------------------------------------------------------- /graphics/ui/trial/confetti_1.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/trial/confetti_1.pal -------------------------------------------------------------------------------- /graphics/ui/trial/confetti_2.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/trial/confetti_2.pal -------------------------------------------------------------------------------- /graphics/ui/trial/confetti_3.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/trial/confetti_3.pal -------------------------------------------------------------------------------- /graphics/ui/trial/exclamation_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/trial/exclamation_point.png -------------------------------------------------------------------------------- /graphics/ui/trial/game_over_doors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/trial/game_over_doors.png -------------------------------------------------------------------------------- /graphics/ui/trial/game_over_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/trial/game_over_text.png -------------------------------------------------------------------------------- /graphics/ui/trial/guilty.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/trial/guilty.pal -------------------------------------------------------------------------------- /graphics/ui/trial/guilty1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/trial/guilty1.png -------------------------------------------------------------------------------- /graphics/ui/trial/guilty_not_guilty2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/trial/guilty_not_guilty2.png -------------------------------------------------------------------------------- /graphics/ui/trial/not_guilty.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/trial/not_guilty.pal -------------------------------------------------------------------------------- /graphics/ui/trial/not_guilty1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/trial/not_guilty1.png -------------------------------------------------------------------------------- /graphics/ui/trial/press_present_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/trial/press_present_buttons.png -------------------------------------------------------------------------------- /graphics/ui/trial/testimony_text_tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/trial/testimony_text_tiles.png -------------------------------------------------------------------------------- /graphics/ui/trial/unused_testimony_characters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/ui/trial/unused_testimony_characters.png -------------------------------------------------------------------------------- /graphics/unk_1940C0.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/unk_1940C0.pal -------------------------------------------------------------------------------- /graphics/unk_194100.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/unk_194100.pal -------------------------------------------------------------------------------- /graphics/unused_ascii_charset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/graphics/unused_ascii_charset.png -------------------------------------------------------------------------------- /include/agb_sram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/include/agb_sram.h -------------------------------------------------------------------------------- /include/animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/include/animation.h -------------------------------------------------------------------------------- /include/background.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/include/background.h -------------------------------------------------------------------------------- /include/case_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/include/case_data.h -------------------------------------------------------------------------------- /include/constants/animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/include/constants/animation.h -------------------------------------------------------------------------------- /include/constants/animation_offsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/include/constants/animation_offsets.h -------------------------------------------------------------------------------- /include/constants/bg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/include/constants/bg.h -------------------------------------------------------------------------------- /include/constants/court_record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/include/constants/court_record.h -------------------------------------------------------------------------------- /include/constants/oam_allocations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/include/constants/oam_allocations.h -------------------------------------------------------------------------------- /include/constants/persons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/include/constants/persons.h -------------------------------------------------------------------------------- /include/constants/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/include/constants/process.h -------------------------------------------------------------------------------- /include/constants/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/include/constants/script.h -------------------------------------------------------------------------------- /include/constants/songs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/include/constants/songs.h -------------------------------------------------------------------------------- /include/court.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/include/court.h -------------------------------------------------------------------------------- /include/court_record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/include/court_record.h -------------------------------------------------------------------------------- /include/declarations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/include/declarations.h -------------------------------------------------------------------------------- /include/ewram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/include/ewram.h -------------------------------------------------------------------------------- /include/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/include/global.h -------------------------------------------------------------------------------- /include/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/include/graphics.h -------------------------------------------------------------------------------- /include/investigation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/include/investigation.h -------------------------------------------------------------------------------- /include/m4a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/include/m4a.h -------------------------------------------------------------------------------- /include/m4a_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/include/m4a_internal.h -------------------------------------------------------------------------------- /include/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/include/main.h -------------------------------------------------------------------------------- /include/save.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/include/save.h -------------------------------------------------------------------------------- /include/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/include/script.h -------------------------------------------------------------------------------- /include/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/include/sound.h -------------------------------------------------------------------------------- /include/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/include/structs.h -------------------------------------------------------------------------------- /include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/include/utils.h -------------------------------------------------------------------------------- /ld_script.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/ld_script.txt -------------------------------------------------------------------------------- /pwaa1.sha1: -------------------------------------------------------------------------------- 1 | 15C0E3389709BB275C42E99ED25212D09E49E361 pwaa1.gba -------------------------------------------------------------------------------- /pwaa1_rev1.sha1: -------------------------------------------------------------------------------- 1 | D23B788C80732898C6CFE344A6811900EB060F23 pwaa1_rev1.gba -------------------------------------------------------------------------------- /script/scenario_0_script.phscr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/script/scenario_0_script.phscr -------------------------------------------------------------------------------- /script/scenario_1_0_script.phscr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/script/scenario_1_0_script.phscr -------------------------------------------------------------------------------- /script/scenario_1_1_script.phscr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/script/scenario_1_1_script.phscr -------------------------------------------------------------------------------- /script/scenario_1_2_script.phscr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/script/scenario_1_2_script.phscr -------------------------------------------------------------------------------- /script/scenario_1_3_script.phscr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/script/scenario_1_3_script.phscr -------------------------------------------------------------------------------- /script/scenario_2_0_script.phscr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/script/scenario_2_0_script.phscr -------------------------------------------------------------------------------- /script/scenario_2_1_script.phscr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/script/scenario_2_1_script.phscr -------------------------------------------------------------------------------- /script/scenario_2_2_script.phscr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/script/scenario_2_2_script.phscr -------------------------------------------------------------------------------- /script/scenario_2_3_script.phscr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/script/scenario_2_3_script.phscr -------------------------------------------------------------------------------- /script/scenario_2_4_script.phscr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/script/scenario_2_4_script.phscr -------------------------------------------------------------------------------- /script/scenario_2_5_script.phscr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/script/scenario_2_5_script.phscr -------------------------------------------------------------------------------- /script/scenario_3_0_script.phscr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/script/scenario_3_0_script.phscr -------------------------------------------------------------------------------- /script/scenario_3_1_script.phscr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/script/scenario_3_1_script.phscr -------------------------------------------------------------------------------- /script/scenario_3_2_script.phscr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/script/scenario_3_2_script.phscr -------------------------------------------------------------------------------- /script/scenario_3_3_script.phscr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/script/scenario_3_3_script.phscr -------------------------------------------------------------------------------- /script/scenario_3_4_script.phscr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/script/scenario_3_4_script.phscr -------------------------------------------------------------------------------- /script/scenario_3_5_script.phscr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/script/scenario_3_5_script.phscr -------------------------------------------------------------------------------- /script/std_scripts.phscr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/script/std_scripts.phscr -------------------------------------------------------------------------------- /songs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/songs.mk -------------------------------------------------------------------------------- /sound/MPlayDef.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/MPlayDef.s -------------------------------------------------------------------------------- /sound/direct_sound_samples/080194EC.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/080194EC.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08019D00.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/08019D00.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/0801A570.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/0801A570.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/0802042C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/0802042C.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08022080.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/08022080.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08027B9C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/08027B9C.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/0802A070.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/0802A070.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/0802C5D0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/0802C5D0.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08030CE4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/08030CE4.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080352A0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/080352A0.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08035B4C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/08035B4C.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08037228.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/08037228.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080416A8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/080416A8.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/0804FDD0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/0804FDD0.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080536DC.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/080536DC.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08053DF8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/08053DF8.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08058358.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/08058358.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/0805AC80.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/0805AC80.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/0805F530.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/0805F530.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080611D4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/080611D4.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08063AA4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/08063AA4.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08068A84.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/08068A84.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/0806C4A0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/0806C4A0.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/0806E510.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/0806E510.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08071100.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/08071100.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08075D6C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/08075D6C.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08076DE4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/08076DE4.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/0807962C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/0807962C.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/0807A1A0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/0807A1A0.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/0807F398.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/0807F398.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08084590.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/08084590.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08084F68.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/08084F68.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080855B8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/080855B8.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08085CC0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/08085CC0.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08088D80.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/08088D80.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/0808960C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/0808960C.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/0808987C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/0808987C.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08094214.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/08094214.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/0809FDC8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/0809FDC8.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080A30D4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/080A30D4.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080A3794.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/080A3794.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080A3F98.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/080A3F98.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080A4858.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/080A4858.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080AA22C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/080AA22C.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080B0730.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/080B0730.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080B5928.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/080B5928.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080BAB20.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/080BAB20.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080BF52C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/080BF52C.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080C4724.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/080C4724.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080C7498.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/080C7498.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080C77B8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/080C77B8.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080C7A9C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/080C7A9C.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080CB030.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/080CB030.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080CE918.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/080CE918.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080D0968.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/080D0968.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080D2378.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/080D2378.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080D5768.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/080D5768.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080D8BE8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/080D8BE8.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080DCFF8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/080DCFF8.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080DF28C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/080DF28C.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080E1204.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/080E1204.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080E3CDC.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/080E3CDC.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080EA830.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/080EA830.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080EE6C4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/080EE6C4.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080F01E4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/080F01E4.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080F0F44.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/080F0F44.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080F36E8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/080F36E8.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080F4288.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/080F4288.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080F6F34.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/080F6F34.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080FD0C8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/080FD0C8.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08100A1C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/08100A1C.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08100C8C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/08100C8C.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08100EFC.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/08100EFC.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/0810116C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/0810116C.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/081013DC.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/081013DC.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/0810164C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/0810164C.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/081018BC.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/081018BC.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08101B2C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/08101B2C.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08101D9C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/08101D9C.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/0810200C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/0810200C.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/0810503C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/0810503C.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/0810CBD8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/0810CBD8.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/0810FB58.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/0810FB58.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/0810FDC8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/0810FDC8.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08110808.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/08110808.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08111228.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/08111228.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/0811A444.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/direct_sound_samples/0811A444.bin -------------------------------------------------------------------------------- /sound/programmable_wave_samples/080411DC.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/programmable_wave_samples/080411DC.pcm -------------------------------------------------------------------------------- /sound/programmable_wave_samples/080411EC.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/programmable_wave_samples/080411EC.pcm -------------------------------------------------------------------------------- /sound/programmable_wave_samples/080411FC.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/programmable_wave_samples/080411FC.pcm -------------------------------------------------------------------------------- /sound/programmable_wave_samples/0804120C.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/programmable_wave_samples/0804120C.pcm -------------------------------------------------------------------------------- /sound/programmable_wave_samples/0804121C.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/programmable_wave_samples/0804121C.pcm -------------------------------------------------------------------------------- /sound/programmable_wave_samples/0804122C.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/programmable_wave_samples/0804122C.pcm -------------------------------------------------------------------------------- /sound/programmable_wave_samples/0804123C.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/programmable_wave_samples/0804123C.pcm -------------------------------------------------------------------------------- /sound/programmable_wave_samples/0804124C.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/programmable_wave_samples/0804124C.pcm -------------------------------------------------------------------------------- /sound/programmable_wave_samples/0804125C.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/programmable_wave_samples/0804125C.pcm -------------------------------------------------------------------------------- /sound/programmable_wave_samples/0804126C.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/programmable_wave_samples/0804126C.pcm -------------------------------------------------------------------------------- /sound/programmable_wave_samples/0804127C.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/programmable_wave_samples/0804127C.pcm -------------------------------------------------------------------------------- /sound/programmable_wave_samples/0804128C.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/programmable_wave_samples/0804128C.pcm -------------------------------------------------------------------------------- /sound/programmable_wave_samples/0804129C.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/programmable_wave_samples/0804129C.pcm -------------------------------------------------------------------------------- /sound/programmable_wave_samples/080412AC.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/programmable_wave_samples/080412AC.pcm -------------------------------------------------------------------------------- /sound/programmable_wave_samples/080412BC.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/programmable_wave_samples/080412BC.pcm -------------------------------------------------------------------------------- /sound/programmable_wave_samples/080412CC.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/programmable_wave_samples/080412CC.pcm -------------------------------------------------------------------------------- /sound/programmable_wave_samples/080412DC.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/programmable_wave_samples/080412DC.pcm -------------------------------------------------------------------------------- /sound/programmable_wave_samples/080412EC.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sound/programmable_wave_samples/080412EC.pcm -------------------------------------------------------------------------------- /src/agb_sram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/src/agb_sram.c -------------------------------------------------------------------------------- /src/animation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/src/animation.c -------------------------------------------------------------------------------- /src/bg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/src/bg.c -------------------------------------------------------------------------------- /src/bg3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/src/bg3.c -------------------------------------------------------------------------------- /src/case_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/src/case_data.c -------------------------------------------------------------------------------- /src/court.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/src/court.c -------------------------------------------------------------------------------- /src/court_record.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/src/court_record.c -------------------------------------------------------------------------------- /src/crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/src/crt0.s -------------------------------------------------------------------------------- /src/data/background.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/src/data/background.h -------------------------------------------------------------------------------- /src/episode_load_processes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/src/episode_load_processes.c -------------------------------------------------------------------------------- /src/gameover_process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/src/gameover_process.c -------------------------------------------------------------------------------- /src/investigation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/src/investigation.c -------------------------------------------------------------------------------- /src/investigation_segment_1_0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/src/investigation_segment_1_0.c -------------------------------------------------------------------------------- /src/investigation_segment_1_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/src/investigation_segment_1_2.c -------------------------------------------------------------------------------- /src/investigation_segment_2_0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/src/investigation_segment_2_0.c -------------------------------------------------------------------------------- /src/investigation_segment_2_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/src/investigation_segment_2_2.c -------------------------------------------------------------------------------- /src/investigation_segment_2_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/src/investigation_segment_2_4.c -------------------------------------------------------------------------------- /src/investigation_segment_3_0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/src/investigation_segment_3_0.c -------------------------------------------------------------------------------- /src/investigation_segment_3_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/src/investigation_segment_3_2.c -------------------------------------------------------------------------------- /src/investigation_segment_3_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/src/investigation_segment_3_4.c -------------------------------------------------------------------------------- /src/libagbsyscall.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/src/libagbsyscall.s -------------------------------------------------------------------------------- /src/m4a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/src/m4a.c -------------------------------------------------------------------------------- /src/m4a_1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/src/m4a_1.s -------------------------------------------------------------------------------- /src/m4a_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/src/m4a_tables.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/src/main.c -------------------------------------------------------------------------------- /src/save_processes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/src/save_processes.c -------------------------------------------------------------------------------- /src/script_commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/src/script_commands.c -------------------------------------------------------------------------------- /src/script_commands2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/src/script_commands2.c -------------------------------------------------------------------------------- /src/script_commands3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/src/script_commands3.c -------------------------------------------------------------------------------- /src/script_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/src/script_main.c -------------------------------------------------------------------------------- /src/scripts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/src/scripts.c -------------------------------------------------------------------------------- /src/sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/src/sound.c -------------------------------------------------------------------------------- /src/title_processes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/src/title_processes.c -------------------------------------------------------------------------------- /src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/src/utils.c -------------------------------------------------------------------------------- /sym_ewram.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sym_ewram.txt -------------------------------------------------------------------------------- /sym_iwram.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/sym_iwram.txt -------------------------------------------------------------------------------- /tools/br_ips/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/br_ips/.gitignore -------------------------------------------------------------------------------- /tools/br_ips/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/br_ips/Makefile -------------------------------------------------------------------------------- /tools/br_ips/br_ips.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/br_ips/br_ips.c -------------------------------------------------------------------------------- /tools/br_ips/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/br_ips/global.h -------------------------------------------------------------------------------- /tools/br_ips/ips_patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/br_ips/ips_patch.c -------------------------------------------------------------------------------- /tools/gbafix/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/gbafix/.gitignore -------------------------------------------------------------------------------- /tools/gbafix/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/gbafix/COPYING -------------------------------------------------------------------------------- /tools/gbafix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/gbafix/Makefile -------------------------------------------------------------------------------- /tools/gbafix/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/gbafix/elf.h -------------------------------------------------------------------------------- /tools/gbafix/gbafix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/gbafix/gbafix.c -------------------------------------------------------------------------------- /tools/gbagfx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/gbagfx/.gitignore -------------------------------------------------------------------------------- /tools/gbagfx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/gbagfx/LICENSE -------------------------------------------------------------------------------- /tools/gbagfx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/gbagfx/Makefile -------------------------------------------------------------------------------- /tools/gbagfx/convert_png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/gbagfx/convert_png.c -------------------------------------------------------------------------------- /tools/gbagfx/convert_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/gbagfx/convert_png.h -------------------------------------------------------------------------------- /tools/gbagfx/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/gbagfx/font.c -------------------------------------------------------------------------------- /tools/gbagfx/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/gbagfx/font.h -------------------------------------------------------------------------------- /tools/gbagfx/gfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/gbagfx/gfx.c -------------------------------------------------------------------------------- /tools/gbagfx/gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/gbagfx/gfx.h -------------------------------------------------------------------------------- /tools/gbagfx/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/gbagfx/global.h -------------------------------------------------------------------------------- /tools/gbagfx/huff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/gbagfx/huff.c -------------------------------------------------------------------------------- /tools/gbagfx/huff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/gbagfx/huff.h -------------------------------------------------------------------------------- /tools/gbagfx/jasc_pal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/gbagfx/jasc_pal.c -------------------------------------------------------------------------------- /tools/gbagfx/jasc_pal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/gbagfx/jasc_pal.h -------------------------------------------------------------------------------- /tools/gbagfx/lz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/gbagfx/lz.c -------------------------------------------------------------------------------- /tools/gbagfx/lz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/gbagfx/lz.h -------------------------------------------------------------------------------- /tools/gbagfx/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/gbagfx/main.c -------------------------------------------------------------------------------- /tools/gbagfx/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/gbagfx/options.h -------------------------------------------------------------------------------- /tools/gbagfx/rl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/gbagfx/rl.c -------------------------------------------------------------------------------- /tools/gbagfx/rl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/gbagfx/rl.h -------------------------------------------------------------------------------- /tools/gbagfx/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/gbagfx/util.c -------------------------------------------------------------------------------- /tools/gbagfx/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/gbagfx/util.h -------------------------------------------------------------------------------- /tools/mid2agb/.gitignore: -------------------------------------------------------------------------------- 1 | mid2agb 2 | -------------------------------------------------------------------------------- /tools/mid2agb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/mid2agb/LICENSE -------------------------------------------------------------------------------- /tools/mid2agb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/mid2agb/Makefile -------------------------------------------------------------------------------- /tools/mid2agb/agb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/mid2agb/agb.cpp -------------------------------------------------------------------------------- /tools/mid2agb/agb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/mid2agb/agb.h -------------------------------------------------------------------------------- /tools/mid2agb/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/mid2agb/error.cpp -------------------------------------------------------------------------------- /tools/mid2agb/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/mid2agb/error.h -------------------------------------------------------------------------------- /tools/mid2agb/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/mid2agb/main.cpp -------------------------------------------------------------------------------- /tools/mid2agb/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/mid2agb/main.h -------------------------------------------------------------------------------- /tools/mid2agb/midi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/mid2agb/midi.cpp -------------------------------------------------------------------------------- /tools/mid2agb/midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/mid2agb/midi.h -------------------------------------------------------------------------------- /tools/mid2agb/tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/mid2agb/tables.cpp -------------------------------------------------------------------------------- /tools/mid2agb/tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/mid2agb/tables.h -------------------------------------------------------------------------------- /tools/preproc/.gitignore: -------------------------------------------------------------------------------- 1 | preproc 2 | -------------------------------------------------------------------------------- /tools/preproc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/preproc/LICENSE -------------------------------------------------------------------------------- /tools/preproc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/preproc/Makefile -------------------------------------------------------------------------------- /tools/preproc/asm_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/preproc/asm_file.cpp -------------------------------------------------------------------------------- /tools/preproc/asm_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/preproc/asm_file.h -------------------------------------------------------------------------------- /tools/preproc/c_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/preproc/c_file.cpp -------------------------------------------------------------------------------- /tools/preproc/c_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/preproc/c_file.h -------------------------------------------------------------------------------- /tools/preproc/char_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/preproc/char_util.h -------------------------------------------------------------------------------- /tools/preproc/preproc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/preproc/preproc.cpp -------------------------------------------------------------------------------- /tools/preproc/preproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/preproc/preproc.h -------------------------------------------------------------------------------- /tools/preproc/string_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/preproc/string_parser.cpp -------------------------------------------------------------------------------- /tools/preproc/string_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/preproc/string_parser.h -------------------------------------------------------------------------------- /tools/preproc/utf8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/preproc/utf8.cpp -------------------------------------------------------------------------------- /tools/preproc/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/preproc/utf8.h -------------------------------------------------------------------------------- /tools/scaninc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/scaninc/.gitignore -------------------------------------------------------------------------------- /tools/scaninc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/scaninc/LICENSE -------------------------------------------------------------------------------- /tools/scaninc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/scaninc/Makefile -------------------------------------------------------------------------------- /tools/scaninc/asm_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/scaninc/asm_file.cpp -------------------------------------------------------------------------------- /tools/scaninc/asm_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/scaninc/asm_file.h -------------------------------------------------------------------------------- /tools/scaninc/c_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/scaninc/c_file.cpp -------------------------------------------------------------------------------- /tools/scaninc/c_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/scaninc/c_file.h -------------------------------------------------------------------------------- /tools/scaninc/scaninc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/scaninc/scaninc.cpp -------------------------------------------------------------------------------- /tools/scaninc/scaninc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/scaninc/scaninc.h -------------------------------------------------------------------------------- /tools/scaninc/source_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/scaninc/source_file.cpp -------------------------------------------------------------------------------- /tools/scaninc/source_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa1/HEAD/tools/scaninc/source_file.h --------------------------------------------------------------------------------